/* Tarifs CSS - Design system bleu/gris examour.com */

/* Variables CSS reprises du design system principal */
:root {
    --primary-color: #1e5f9e;
    --primary-light: #2980b9;
    --primary-dark: #174a7c;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #1e5f9e 0%, #2980b9 50%, #3498db 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Header moderne - repris du design principal */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
    padding: 10px 0;
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.02);
}

.header-logo-img {
    width: 45px;
    height: auto;
    transition: transform 0.3s ease;
}

.header-brand {
    display: flex;
    flex-direction: column;
}

.header-brand-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary-color);
    background: rgba(30, 95, 158, 0.1);
}

.header-nav a.active {
    color: var(--primary-color);
    background: rgba(30, 95, 158, 0.1);
    font-weight: 600;
}

.header-cta {
    background: var(--gradient-hero) !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 24px !important;
    box-shadow: var(--shadow-medium);
    border: none;
    position: relative;
    overflow: hidden;
}

.header-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    color: white !important;
}

/* Menu burger mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-medium);
    border-top: 1px solid var(--border-color);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-menu a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary-color);
}

.header-nav-links {
    display: flex;
    gap: 30px;
}

.header-nav-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Section Tarifs */
.hero-tarifs {
    min-height: 60vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-tarifs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Bandeau promotion */
.promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 3s infinite;
}

.promo-banner i {
    font-size: 16px;
    opacity: 0.9;
}

/* Section Tarifs */
.tarifs-section {
    padding: 100px 20px;
    background: var(--bg-light);
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.tarif-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
    text-align: center;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.tarif-card.premium {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    padding-top: 60px;
}

.tarif-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 25px 25px 0 0;
    z-index: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.card-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid var(--border-color);
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 8px;
}

.price-daily {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-amount {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.card-features {
    margin-bottom: 40px;
}

.card-features ul {
    list-style: none;
    padding: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    color: var(--text-color);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Informations d'abonnement */
.subscription-info {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.subscription-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.subscription-info p:last-child {
    margin-bottom: 0;
}

.subscription-info p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Encadré conditions d'abonnement */
.subscription-terms-box {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    margin: 60px 0 40px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.subscription-terms-content {
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 95, 158, 0.02) 0%, rgba(52, 152, 219, 0.02) 100%);
}

.subscription-terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--text-color);
}

.subscription-terms-content p:last-child {
    margin-bottom: 0;
}

.subscription-terms-content p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.subscription-terms-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.subscription-terms-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

/* CTA Global */
.global-cta-container {
    text-align: center;
    margin: 40px 0 60px;
}

.global-cta {
    max-width: 400px;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: var(--shadow-heavy);
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.global-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s;
}

.global-cta:hover::before {
    left: 100%;
}

.global-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 25px 70px rgba(30, 95, 158, 0.3);
}

/* Section Pourquoi un abonnement */
.why-subscription-section {
    padding: 100px 20px;
    background: white;
    position: relative;
}

.why-subscription-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-subscription-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.service-description,
.subscription-benefits {
    background: var(--bg-light);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-description:hover,
.subscription-benefits:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.service-description h3,
.subscription-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

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

.feature-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 2px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Boutons btn-primary-blue */
.btn-primary-blue {
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-primary-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn-primary-blue:hover::before {
    left: 100%;
}

.btn-primary-blue:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #174a7c 0%, var(--primary-color) 100%);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* Section Garanties */
.garanties-section {
    padding: 100px 20px;
    background: white;
}

.garanties-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.garantie-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.garantie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.garantie-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-medium);
}

.garantie-icon i {
    font-size: 2rem;
    color: white;
}

.garantie-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.garantie-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section FAQ */
.faq-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
    font-size: 1rem;
}

.faq-answer.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* CTA Final */
.final-cta-section {
    background: var(--gradient-hero);
    padding: 100px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="100" cy="100" r="50" fill="url(%23b)"/><circle cx="900" cy="200" r="80" fill="url(%23b)"/><circle cx="300" cy="800" r="60" fill="url(%23b)"/></svg>');
    opacity: 0.3;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Footer moderne */
.footer-modern {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tarif-card.premium {
        transform: none;
    }

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

    .garanties-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-subscription-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav-links {
        display: none;
    }

    .header-nav {
        gap: 15px;
    }

    .hero-tarifs {
        padding: 140px 20px 60px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .promo-banner {
        font-size: 14px;
        padding: 10px 16px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .tarifs-section {
        padding: 40px 15px 60px;
    }

    .garanties-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 15px;
    }

    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .tarif-card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .subscription-info {
        padding: 20px;
        margin: 15px 0;
    }

    .subscription-info p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-content p {
        font-size: 1.1rem;
    }

    .subscription-terms-box {
        margin: 40px 0 30px;
    }

    .subscription-terms-content {
        padding: 25px 20px;
    }

    .subscription-terms-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .global-cta-container {
        margin: 30px 0 40px;
    }

    .global-cta {
        font-size: 1.1rem;
        padding: 18px 35px;
    }

    .why-subscription-section {
        padding: 60px 15px;
    }

    .why-subscription-content {
        gap: 30px;
        margin-top: 40px;
    }

    .service-description,
    .subscription-benefits {
        padding: 30px 20px;
    }

    .service-description h3,
    .subscription-benefits h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .feature-list li {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-tarifs,
    .tarifs-section,
    .garanties-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tarif-card {
        padding: 25px 15px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .btn-primary-blue {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-content p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
}
