/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

/* Header styles for other pages */
header {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
}

/* Logo styles for other pages */
.logo-container {
    position: absolute;
    left: 20px;
    top: 0%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.logo {
    width: 100px;
    height: auto;
    position: absolute;
    top: -400%;
}

/* Text container styles */
.text-container {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.text-container h1 {
    font-size: 2.3rem;
    margin: 0;
    margin-left: 90px;
    cursor: pointer;
    font-weight: 600;
}

/* Logo styles for other pages */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Combine logo and text hover effects */
.header-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 100px;
}

/* Navigation styles for other pages */
.nav-links {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: #f16767;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: white;
    background-color: rgba(241, 103, 103, 0.2);
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #f16767;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Rotate bars when open */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Main page specific header styles */
body[index] header {
    height: 80px;
}

body[index] header.scrolled {
    height: 80px;
    padding: 0 2rem;
}

/* Large logo and text */
body[index] .header-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 100px;
}

body[index] .header-content .logo-container {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
}

body[index] .header-content .text-container {
    position: relative;
    z-index: 1;
    text-align: right;
}

body[index] header.scrolled .header-content {
    opacity: 1;
    transform: none;
}

/* Small header logo and text */
body[index] .small-header {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    opacity: 1;
}

body[index] .small-header .logo-container {
    position: relative;
    display: flex;
    align-items: center;
    left: 20px;
    top: 0;
}

body[index] .small-header .logo {
    width: 60px;
    height: auto;
}

body[index] .small-header .text-container {
    position: relative;
    display: flex;
    align-items: center;
    left: 100px;
    top: 0;
    color: #f16767;
}

body[index] .small-header .text-container h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
    margin-top: -5px;
}

body[index] header.scrolled .small-header {
    opacity: 1;
    transform: translateY(-50%);
}

/* Navigation styles */
body[index] .nav-links {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

body[index] .nav-links ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

body[index] .nav-links a {
    color: #f16767;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

body[index] .nav-links a:hover {
    color: white;
}

body[index] header.scrolled .nav-links {
    opacity: 1;
    transform: translateY(-50%);
}

body[index] header.scrolled .rotated-logo {
    display: none;
}

h1 {
    color: #f16767;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.sous-titre {
    color: #f16767;
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Main content styles */
main {
    min-height: 100vh;
    padding: 0;
    background-color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

body[index] main {
    margin-top: 80px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('pictures/fond.png') no-repeat center center/cover;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: #f16767;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease;
    border-color: #f16767;
    border-width: 5px;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Features section */
.features {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2, .audience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.feature-card h3 {
    color: #f16767;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    text-align: center;
}

/* CTA Container styles */
.cta-container {
    text-align: center;
    margin: 4rem auto 5rem;
    padding: 0 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.cta-container .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid #f16767;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-container .cta-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Contact form styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-form form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Intro text section for contact page */
.intro-text {
    max-width: 800px;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Footer styles */
footer {
    background-color: black;
    color: white;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

footer p {
    color: #f16767;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Team Page Styles */
.team-intro {
    padding: 4rem 0;
    text-align: center;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #f16767;
    margin: 1rem auto 0;
}

.executives {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
}

.executives-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.executive-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.executive-image {
    height: 250px;
    overflow: hidden;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.executive-card:hover .executive-image img {
    transform: scale(1.05);
}

.executive-info {
    padding: 2rem;
}

.executive-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: #333;
}

.executive-title {
    font-size: 1.1rem;
    color: #f16767;
    margin-bottom: 1rem;
    font-weight: 500;
}

.executive-bio {
    line-height: 1.6;
    color: #666;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.linkedin-logo {
    width: 40px;
    height: 40px;
    margin-right: 4rem;
    transition: opacity 0.3s ease;
}

.executive-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.executive-header > div {
    flex: 1;
}

.linkedin-link {
    margin-left: 1.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.linkedin-link:hover {
    transform: scale(1.1);
}

.linkedin-link:hover .linkedin-logo {
    opacity: 0.9;
}

.executive-info {
    flex: 1;
    padding: 1.5rem;
}

.partnerships {
    padding: 4rem 0;
}

.partnership-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 900px;
}

.partnership-content {
    padding: 2rem;
}

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

.partners-list {
    list-style-type: none;
    padding: 0;
}

.partners-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.partners-list li:last-child {
    border-bottom: none;
}

.partners-list li:before {
    content: '•';
    color: #f16767;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.partners-list strong {
    color: #333;
    margin-right: 0.5rem;
}

/* Partners Grid Styles */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.partner-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    height: 100px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    color: #333;
}

.partner-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for partners grid */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-logo {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .executives-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .executive-card {
        max-width: 100%;
    }
    
    .team-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .header-content {
        padding-right: 50px;
    }
    
    .nav-links ul {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .logo {
        width: 100px;
        position: absolute;
        top: -400%;
    }
    
    .logo-container {
        position: absolute;
        left: 20px;
        top: 0%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle {
        right: 20px;
    }
    
    .text-container {
        left: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100% - 80px);
        background-color: black;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        transform: none;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links a {
        color: #f16767;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Audience Section Styles */
.audience-section {
    padding: 5rem 0;
    margin-top: 4rem;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

.audience-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.selector-btn {
    background-color: transparent;
    border: 2px solid #f16767;
    color: #f16767;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selector-btn.active, .selector-btn:hover {
    background-color: #f16767;
    color: white;
}

.audience-content {
    position: relative;
}

.audience-tab {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.audience-tab.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audience-info {
    text-align: center;
}

.audience-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card h4 {
    color: #f16767;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Horizontal Scheme Styles */
.scheme-tab {
    display: none;
    margin-bottom: 3rem;
}

.scheme-tab.active {
    display: block;
}

.scheme-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 6rem;
}

.scheme-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scheme-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    color: #f16767;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    transition: transform 0.3s ease;
}

.scheme-step:hover .step-icon {
    transform: scale(1.1);
}

.scheme-step h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.scheme-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.scheme-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f16767;
    padding: 0 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .scheme-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .scheme-step {
        width: 100%;
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
    
    .scheme-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .scheme-horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .scheme-step {
        width: 100%;
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
    
    .scheme-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 4rem auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 3rem auto;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #f16767;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: #777;
}

.slider-arrow {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #f16767;
    color: white;
}

.prev-arrow {
    margin-right: 1rem;
}

.next-arrow {
    margin-left: 1rem;
}

.arrow-icon {
    font-style: normal;
    font-size: 1.2rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #f16767;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-slider-container {
        flex-direction: column;
    }
    
    .slider-arrow {
        margin: 1rem 0;
    }
    
    .prev-arrow {
        margin-right: 0;
        order: 2;
    }
    
    .next-arrow {
        margin-left: 0;
        order: 3;
    }
    
    .testimonial-slider {
        order: 1;
        height: 300px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* nav panel above content */
    .nav-links {
        z-index: 1050;
    }

    /* Testimonial mobile tweaks */
    .testimonial-slider-container {
        flex-direction: column;
    }
    .slider-arrow {
        display: none;
    }
    .testimonial-slider {
        width: 90%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* nav panel above content */
    .nav-links {
        z-index: 1050;
    }

    /* Testimonial mobile tweaks */
    .testimonial-slider-container {
        flex-direction: column;
    }
    .slider-arrow {
        display: none;
    }
    .testimonial-slider {
        width: 90%;
    }
}

/* Responsive adjustments for feature cards */
@media (max-width: 768px) {
    .features-grid {
        justify-items: center;
    }
    
    .feature-card {
        max-width: 90%;
    }
}

/* Contact Options Section */
.contact-options {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contact-options .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-option {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #f16767;
}

.contact-option img {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-option[href^="mailto:"] img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
}

.contact-option:hover img {
    transform: scale(1.1);
}

.contact-option span {
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-options .container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-option {
        min-height: 150px;
        padding: 1.5rem;
    }
}

/* Scheme Title Styles */
.scheme-title {
    text-align: center;
    margin: 2rem 0 1.5rem;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.scheme-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f16767;
}

/* Adjust scheme container spacing */
.scheme-horizontal {
    margin: 1rem 0 6rem;
}

/* Audience Layout */
.audience-layout {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.audience-header {
    flex: 1;
    position: sticky;
    top: 120px;
    padding: 2rem;
    /* background: white; */
    border-radius: 10px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
}

.audience-header h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.audience-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f16767;
}

.audience-header p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.audience-header .cta-button {
    display: inline-block;
    margin-top: 1rem;
}

.audience-features {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    color: #f16767;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .audience-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .audience-header {
        position: static;
        width: 100%;
    }
    
    .audience-features {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .audience-features {
        grid-template-columns: 1fr;
    }
    
    .audience-header {
        padding: 1.5rem;
    }
    
    .audience-header h3 {
        font-size: 1.7rem;
    }
}

/* Responsive adjustments for audience section */
@media (max-width: 1024px) {
    .audience-section {
        border-radius: 25px;
        margin: 3rem 0;
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .audience-section {
        border-radius: 20px;
        margin: 2rem 0;
        padding: 3rem 1rem;
    }
    
    .audience-section .container {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .audience-section {
        border-radius: 15px;
        margin: 1.5rem 0.5rem;
        padding: 2.5rem 0.5rem;
    }
}

.team-intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.team-intro-logo {
    width: 200px;
    height: auto;
    opacity: 0.2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.left-logo {
    transform: rotate(90deg);
}

.right-logo {
    transform: rotate(-90deg);
}

.team-description {
    flex: 1;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .team-intro-logo {
        display: none;
    }
    
    .team-intro-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Intro Section */
.intro-section {
    background-color: #fff;
    padding: 80px 0;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.intro-content {
    flex: 1;
    max-width: 600px;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.highlight-text {
    color: #f16767;
    font-weight: 600;
    position: relative;
    display: inline;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(241, 103, 103, 0.2);
    z-index: -1;
    border-radius: 2px;
}

.intro-logo-container {
    flex-shrink: 0;
    width: 500px;
    opacity: 0.2;
    transform: rotate(-90deg);
}

.intro-logo {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .intro-container {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .intro-logo-container {
        width: 300px;
        margin: 0 auto;
    }
}

/* Partners Section */
.partners-section {
    padding: 6rem 2rem;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20rem;
}

.partners-section h2 {
    font-size: 2.2rem;
    color: #333;
    position: relative;
    white-space: nowrap;
    margin: 0;
    flex-shrink: 0;
    width: 250px;
}

.partners-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #f16767;
    margin-top: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    flex-grow: 1;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .partners-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .partners-section h2 {
        white-space: normal;
        width: 100%;
    }
    
    .partners-section h2:after {
        margin: 1rem auto 0;
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo {
        height: 130px;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .partner-logo {
        height: 120px;
        padding: 1rem;
    }
    
    .partners-section {
        padding: 4rem 1rem;
    }
}

/* Team CTA Styles */
.team-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.team-cta p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-button.secondary {
    background-color: transparent;
    color: #f16767;
    border: 2px solid #f16767;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background-color: #f16767;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-cta {
        text-align: center;
    }
    
    .team-cta p {
        font-size: 1rem;
    }
}