/* Styling specific to the Partenaires page */

.page-partenaires {
    background-color: #f4f5f6;
    color: #111111;
}

.page-partenaires .header {
    background: transparent;
}

.page-partenaires .header a {
    color: #1a2f33;
}

.page-partenaires .header a.btn-contact {
    color: #ffffff;
}

.page-partenaires .header.scrolled {
    background: rgba(242, 245, 244, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partenaires-main {
    padding-top: 180px; 
    padding-bottom: 0px; 
}

/* HERO */
.partenaires-hero {
    max-width: 1400px;
    margin: 0 auto 100px auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hero-text-content {
    flex: 1.2;
}

.partenaires-hero .subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #b0b8bc;
    margin-bottom: 24px;
}

.partenaires-hero h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a2f33;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
}

.partenaires-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5d60;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* BENEFITS SECTION */
.benefits-section {
    background-color: #ffffff;
    padding: 120px 60px;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.benefits-header h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #1a2f33;
    margin-bottom: 20px;
}

.benefits-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.benefit-card {
    padding: 50px 40px;
    background-color: #f4f5f6;
    border-radius: 32px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    color: #EE1B24;
    margin-bottom: 30px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a2f33;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5d60;
}

/* CTA SECTION */
.cta-section {
    padding: 120px 60px;
    background-color: #f4f5f6;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #1a2f33;
}

.cta-container p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 50px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background-color: #EE1B24;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #cc151d;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .partenaires-hero {
        flex-direction: column;
        gap: 60px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partenaires-main {
        padding-top: 140px;
    }
    .partenaires-hero {
        padding: 0 30px;
    }
    .partenaires-hero h1 {
        font-size: 44px;
    }
    .benefits-section {
        padding: 80px 30px;
    }
    .benefits-header h2 {
        font-size: 36px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .cta-section {
        padding: 80px 30px;
    }
    .cta-container h2 {
        font-size: 40px;
    }
}
