


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #267895;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2EA3F2;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.site-header {
    background-color: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 75px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}


.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 68px;
    width: auto;
    max-height: 60%;
}


.main-nav {
    flex-grow: 1;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-item.current .nav-link {
    color: #2EA3F2;
    background-color: rgba(46, 163, 242, 0.1);
}

.icon-home {
    font-size: 2em;
    width: 1em;
    height: 1em;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}


#main-content {
    margin-top: 75px;
    min-height: calc(100vh - 75px);
}


.site-footer {
    background-color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #267895;
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #2EA3F2;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #267895;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #2EA3F2;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .header-content {
        height: auto;
        min-height: 75px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .method-section,
    .origins-section,
    .means-section,
    .expertise-section,
    .news-section {
        padding: 2rem 0;
    }
    
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .navigation-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-grid,
    .body-care-content,
    .respiration-content,
    .coaching-content,
    .trac-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coaching-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-section,
    .stats-section,
    .content-section,
    .body-care-section,
    .respiration-section,
    .coaching-section,
    .trac-section,
    .tips-section {
        padding: 2rem 0;
    }
    
    
    .conference-content,
    .main-intro-content,
    .program-content,
    .stretching-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .beliefs-videos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .conference-section,
    .main-intro-section,
    .program-section,
    .stretching-section,
    .beliefs-section {
        padding: 2rem 0;
    }
    
    
    .intro-content,
    .comfort-content,
    .position-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problems-grid,
    .precision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-section,
    .approach-section,
    .comfort-section,
    .position-section,
    .problems-section {
        padding: 2rem 0;
    }
    
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .formation-content,
    .team-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-list,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .skills-section,
    .formation-section,
    .team-section,
    .contact-section,
    .social-section,
    .offers-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .logo-img {
        height: 40px;
    }
    
    .site-header {
        height: 60px;
    }
    
    .header-content {
        height: 60px;
        min-height: 60px;
    }
    
    #main-content {
        margin-top: 60px;
    }
}


.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #267895;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #2EA3F2;
    color: #fff;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}


.content-section {
    padding: 2rem 0;
}

.hero-section {
    background: linear-gradient(135deg, #267895 0%, #2EA3F2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}


.services-grid {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-content h4 {
    color: #267895;
    margin-bottom: 0.5rem;
}

.contact-button {
    text-align: center;
    margin-top: 2rem;
}


.method-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.method-content h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.divider {
    width: 100px;
    height: 2px;
    background-color: #2EA3F2;
    margin: 1rem auto 2rem;
}

.method-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}


.about-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.origins-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.origins-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.origins-image {
    text-align: center;
    margin: 2rem 0;
}

.origins-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.origins-button {
    text-align: center;
    margin-top: 2rem;
}


.means-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.means-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.means-image {
    text-align: center;
    margin: 2rem 0;
}

.means-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.means-button {
    text-align: center;
    margin-top: 2rem;
}


.expertise-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.expertise-left h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.expertise-description {
    background-color: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 8px;
}

.expertise-description ul {
    list-style: none;
    padding: 0;
}

.expertise-description li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #267895;
    font-weight: bold;
}

.expertise-button {
    text-align: center;
    margin-top: 2rem;
}


.news-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    padding: 1rem 1rem 0;
    margin-bottom: 0.5rem;
}

.news-item h3 a {
    color: #267895;
    text-decoration: none;
}

.news-item h3 a:hover {
    color: #2EA3F2;
}

.news-meta {
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.news-content {
    padding: 0 1rem 1rem;
}

.news-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}


.video-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-text h2 {
    color: #333;
    margin-bottom: 2rem;
}

.video-player {
    text-align: center;
}

.video-player video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stats-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2EA3F2;
    margin-bottom: 1rem;
}

.stat-item h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.stat-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.navigation-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.navigation-buttons .btn {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

.content-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.content-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #267895;
    font-weight: bold;
}

.content-button {
    margin-top: 2rem;
}

.body-care-section {
    padding: 4rem 0;
    background-color: #fff;
}

.body-care-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.body-care-text h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.body-care-text ul {
    list-style: none;
    padding: 0;
}

.body-care-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.body-care-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #267895;
    font-weight: bold;
}

.body-care-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.respiration-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.respiration-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.respiration-text h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.respiration-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.respiration-button {
    margin-top: 2rem;
}

.coaching-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.coaching-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.coaching-text h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.coaching-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.coaching-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

.trac-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.trac-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.trac-text h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.trac-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.trac-button {
    margin-top: 2rem;
}

.tips-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.tips-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.tips-content {
    max-width: 800px;
    margin: 0 auto;
}

.tips-content h5 {
    color: #267895;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tips-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}


.conference-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.conference-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}

.conference-image {
    text-align: center;
}

.conference-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.conference-image h3 {
    color: #267895;
    font-size: 1.1rem;
    margin: 0;
}

.conference-text p {
    margin-bottom: 1rem;
}

.conference-info {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #2EA3F2;
}

.conference-button {
    margin-top: 2rem;
}

.main-intro-section {
    padding: 4rem 0;
    background-color: #fff;
}

.main-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-text h2 {
    color: #267895;
    margin-bottom: 1rem;
}

.intro-text h3 {
    color: #2EA3F2;
    margin: 2rem 0;
}

.intro-button {
    margin-top: 2rem;
}

.intro-video {
    text-align: center;
}

.intro-video iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.intro-message {
    text-align: center;
    padding: 2rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.intro-message h3 {
    color: #267895;
    margin: 0;
}

.program-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.program-text h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.program-video iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.program-button {
    margin-top: 2rem;
}

.stretching-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.stretching-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stretching-text h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.stretching-text h3 {
    color: #2EA3F2;
    margin: 2rem 0 1rem;
}

.stretching-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.stretching-button {
    margin-top: 2rem;
}

.beliefs-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
}

.beliefs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.beliefs-header h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.beliefs-header p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.beliefs-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.belief-video iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.beliefs-button {
    text-align: center;
}


.intro-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.intro-text h3 {
    color: #267895;
    margin-bottom: 2rem;
}

.intro-text blockquote {
    background-color: #fff;
    padding: 1.5rem;
    border-left: 4px solid #2EA3F2;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.intro-text blockquote p {
    margin: 0;
    font-style: italic;
}

.intro-button {
    margin-top: 2rem;
}

.intro-video {
    text-align: center;
}

.intro-video iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

.approach-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.approach-section h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.approach-section h3 {
    color: #2EA3F2;
    margin-bottom: 2rem;
}

.approach-video {
    margin: 2rem 0;
}

.approach-video iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.approach-button {
    margin-top: 2rem;
}

.comfort-section {
    padding: 4rem 0;
    background-color: #fff;
}

.comfort-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.comfort-text h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.comfort-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.comfort-button {
    margin-top: 2rem;
}

.position-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.position-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.position-text h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.position-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.position-button {
    margin-top: 2rem;
}

.problems-section {
    padding: 4rem 0;
    background-color: #fff;
}

.problems-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.problem-item {
    text-align: center;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: #267895;
    margin-bottom: 1rem;
}

.precision-section {
    margin-top: 3rem;
}

.precision-section > p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #267895;
    margin-bottom: 2rem;
}

.precision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.precision-item {
    text-align: center;
}

.precision-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.precision-item h3 {
    color: #267895;
    margin-bottom: 1rem;
}

.formation-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.formation-button {
    margin-top: 2rem;
}


.skills-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.skills-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.skill-item h3 {
    color: #267895;
    margin-bottom: 1rem;
}

.formation-section {
    padding: 4rem 0;
    background-color: #fff;
}

.formation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.formation-text h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.formation-text ul {
    list-style: none;
    padding: 0;
}

.formation-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.formation-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #267895;
    font-weight: bold;
}

.formation-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.team-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.member-info h3 {
    color: #267895;
    margin-bottom: 0.5rem;
}

.member-title {
    font-weight: 600;
    color: #2EA3F2;
    margin-bottom: 0.5rem;
}

.member-role,
.member-expertise,
.member-book {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.team-description {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-description h2 {
    color: #267895;
    text-align: center;
    margin-bottom: 2rem;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.expertise-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.expertise-item h4 {
    color: #267895;
    margin-bottom: 1rem;
}

.team-button {
    text-align: center;
    margin-top: 2rem;
}


.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #267895;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #2EA3F2;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #267895;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2EA3F2;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #267895;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2EA3F2;
    box-shadow: 0 0 0 2px rgba(46, 163, 242, 0.2);
}

.social-section {
    padding: 4rem 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.social-section h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #2EA3F2;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #267895;
    color: #fff;
}


.offers-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.offer-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offer-card h3 {
    color: #267895;
    margin-bottom: 1rem;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.offer-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.offer-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #267895;
    font-weight: bold;
}

.offer-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2EA3F2;
    margin: 1.5rem 0;
}

.offers-info {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.offers-info h2 {
    color: #267895;
    text-align: center;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
}

.info-item h4 {
    color: #267895;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-offers {
    text-align: center;
    padding: 3rem;
    background-color: #333;
    color: #fff;
    border-radius: 8px;
}

.contact-offers h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-offers p {
    margin-bottom: 2rem;
    opacity: 0.9;
}
