/* ===== CHARTE GRAPHIQUE OIF COMPLÈTE AVEC BOOTSTRAP ===== */
:root {
    /* PALETTE OFFICIELLE OIF */
    --oif-blue: #0055A4;           /* Bleu principal OIF */
    --oif-blue-dark: #003366;      /* Bleu foncé */
    --oif-blue-light: #1E88E5;     /* Bleu clair */
    --oif-blue-lightest: #E3F2FD;  /* Bleu très clair */
    
    /* COULEURS D'ACCENT OIF */
    --oif-accent: #C2185B;         /* Rose/magenta - accent officiel */
    --oif-accent-light: #E91E63;   /* Rose clair */
    --oif-accent-secondary: #7B1FA2; /* Violet secondaire */
    
    /* NEUTRES PROFESSIONNELS OIF */
    --oif-black: #000000;          /* Texte principal */
    --oif-white: #FFFFFF;          /* Fond principal */
    --oif-gray-50: #FAFAFA;
    --oif-gray-100: #F5F5F5;
    --oif-gray-200: #EEEEEE;
    --oif-gray-300: #E0E0E0;
    --oif-gray-400: #BDBDBD;
    --oif-gray-500: #9E9E9E;
    --oif-gray-600: #757575;
    --oif-gray-700: #616161;
    --oif-gray-800: #424242;
    --oif-gray-900: #212121;
    
    /* COULEURS ÉCOLOGIQUES */
    --oif-green: #2E7D32;          /* Vert écologique */
    --oif-teal: #00897B;           /* Turquoise OIF */
    
    /* TYPOGRAPHIE OIF */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-logo: 'Arial', 'Helvetica Neue', sans-serif;
    
    /* OMBRES */
    --shadow-sm: 0 1px 3px rgba(0, 85, 164, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 85, 164, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 85, 164, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 85, 164, 0.15);
    
    /* BORDRES */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* TRANSITIONS */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE INTÉGRÉ À BOOTSTRAP ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--oif-gray-900);
    background-color: var(--oif-white);
    min-height: 100vh;
    padding-top: 30px; /* Réduit de 90px à 70px */
    width: 100%;
    position: relative;
}

/* ===== TYPOGRAPHIE OIF ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--oif-blue);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--oif-blue), var(--oif-accent));
    border-radius: var(--radius-full);
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.75rem;
    color: var(--oif-blue-dark);
}

h4 {
    font-size: 1.5rem;
    color: var(--oif-blue);
}

p {
    margin-bottom: 1.5rem;
    color: var(--oif-gray-700);
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--oif-gray-600);
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--oif-blue), var(--oif-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 7rem 0;
}

/* CONTENEUR PRINCIPAL DU HEADER - TOUT SUR UNE LIGNE */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    min-height: 60px;
    height: 100%;
}

/* LOGO - TEXTE COMPLET ET BIEN VISIBLE */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    flex-shrink: 0;
    min-width: max-content;
    height: 100%;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

/* ===== HERO SECTION REDESIGN AVEC BOOTSTRAP ===== */

/* Container principal */
.hero-section {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Desktop */
@media (min-width: 768px) {
    .hero-section {
        height: 90vh;
        min-height: 600px;
        max-height: 900px;
    }
}

/* Slider container */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

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

/* ========== CORRECTION RADICALE : TEXTE REMONTÉ DE 50% ========== */
/* ANCIEN : .hero-content-container avait justify-content: center */
/* NOUVEAU : On le remonte significativement */



/* Version grand écran */
@media (min-width: 768px) {
    .hero-content-container {
        /* CHANGÉ : Garde peu d'espace en haut pour être remonté */
        padding: 20px 60px 350px 150px; /* 50px en haut seulement */
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* Version mobile - aussi remonté */
@media (max-width: 767.98px) {
    .hero-content-container {
        /* CHANGÉ : Remonté sur mobile aussi */
        padding: 40px 20px 350px 40px; /* 40px en haut au lieu de 100px */
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* Version petit mobile */
@media (max-width: 575.98px) {
    .hero-content-container {
        /* CHANGÉ : Encore remonté */
        padding: 30px 15px 350px 30px; /* 30px en haut au lieu de 90px */
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* SUPPRESSION DU BOX D'ARRIÈRE-PLAN */
.hero-content {
    max-width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    margin: 0;
    /* S'assure que le contenu ne prend pas trop de largeur */
    width: auto;
}

/* Largeur du bloc texte */
@media (min-width: 768px) {
    .hero-content {
        max-width: 650px; /* Bonne largeur pour le texte */
        padding: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 0;
    }
}

/* Titres avec dégradé */
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--oif-blue), var(--oif-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--oif-white);
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Indicateurs */
.slider-indicators {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .slider-indicators {
        bottom: 220px; /* Au-dessus des stats */
    }
}

@media (max-width: 767.98px) {
    .slider-indicators {
        bottom: 80px; /* Repositionné pour mobile */
    }
}

.indicators-container {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--oif-white);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* ===== STATISTIQUES AVEC BOOTSTRAP - CORRECTION DU CENTRAGE ===== */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.5rem 0;
}

/* Desktop : afficher normalement et CENTRER */
@media (min-width: 768px) {
    .hero-stats {
        display: block;
        padding-bottom: 2rem;
    }
    
    .stats-group.active {
        display: flex;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        padding: 1.5rem 2rem;
        border-radius: var(--radius-lg);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        max-width: 900px;
        margin: 0 auto;
        width: auto;
    }
    
    .stats-group.active .row {
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .stats-group.active .col-6.col-md-3 {
        flex: 0 0 auto;
        width: auto;
        min-width: 180px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 0.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--oif-white);
        line-height: 1;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        display: block;
        white-space: nowrap;
    }
}

/* Pour les très grands écrans, on peut augmenter légèrement */
@media (min-width: 1400px) {
    .stats-group.active {
        max-width: 1000px;
    }
    
    .stats-group.active .col-6.col-md-3 {
        min-width: 200px;
    }
}

/* Mobile : MASQUER COMPLÈTEMENT */
@media (max-width: 767.98px) {
    .hero-stats {
        display: none !important;
    }
}

/* Ajustements pour mobile */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-slide {
        min-height: 100vh;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-group .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour très petits écrans */
@media (max-width: 575.98px) {
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 60px;
    }
    
    .indicators-container {
        padding: 0.5rem 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--oif-blue), var(--oif-accent-secondary));
    color: var(--oif-white);
    box-shadow: 0 4px 15px rgba(0, 85, 164, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 85, 164, 0.4);
    background: linear-gradient(135deg, var(--oif-blue-light), var(--oif-accent-light));
    color: var(--oif-white);
}

.btn-outline {
    background: transparent;
    color: var(--oif-blue);
    border-color: var(--oif-blue);
}

.btn-outline:hover {
    background: var(--oif-blue);
    color: var(--oif-white);
    border-color: var(--oif-blue);
}

.btn-white {
    background: var(--oif-white);
    color: var(--oif-blue-dark);
    border: 2px solid var(--oif-white);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    color: var(--oif-blue-dark);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===== FOOTER OIF ===== */
.main-footer {
    background: linear-gradient(135deg, var(--oif-blue-dark) 0%, #002244 100%);
    color: var(--oif-white);
    padding: 4rem 0 0;
    margin-top: 4rem;
    position: relative;
    width: 100%;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oif-blue), var(--oif-accent), var(--oif-accent-secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-column {
    padding: 0 1rem;
}

.footer-column h3 {
    color: var(--oif-white);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--oif-accent);
    border-radius: var(--radius-sm);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--oif-white);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oif-accent-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.partner-logo {
    background: var(--oif-white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    height: 70px;
    width: 100%;
    object-fit: contain;
    transition: var(--transition-base);
    border: 1px solid var(--oif-gray-300);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oif-white);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 1rem;
}

.social-link:hover {
    background: var(--oif-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

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

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

.mb-20 { margin-bottom: 1.25rem !important; }
.mb-40 { margin-bottom: 2.5rem !important; }
.mb-60 { margin-bottom: 3.75rem !important; }

.mt-20 { margin-top: 1.25rem !important; }
.mt-40 { margin-top: 2.5rem !important; }
.mt-60 { margin-top: 3.75rem !important; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

/* === CORRECTIONS POUR PROBLÈME D'ESPACE BLANC À DROITE === */

/* 1. S'assurer que tout s'adapte au viewport */
* {
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* 2. Correction pour la section héros */
.hero-section {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* 3. Images responsives */
img {
    max-width: 100%;
    height: auto;
}

/* 4. Correction spécifique pour mobile */
@media (max-width: 767.98px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
    
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .col-12, .col-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Correction pour le texte dans le héros */
    .hero-content {
        margin: 0;
    }
    
    /* Ajustement pour les flags */
    .country-flag {
        flex: 0 0 auto;
        min-width: 100px;
    }
}

/* === CARROUSEL/HERO SCROLLABLE SUR PETITS ÉCRANS === */

@media (max-height: 700px) {
    .hero-section {
        height: auto !important;
        min-height: 100vh;
        overflow-y: auto;
    }
    
    .hero-slider-container {
        position: relative !important;
        height: auto !important;
        min-height: 100vh;
    }
    
    .hero-slide {
        position: relative !important;
        height: auto !important;
        min-height: 100vh;
        opacity: 1 !important;
        display: none !important;
    }
    
    .hero-slide.active {
        display: block !important;
        animation: fadeIn 0.5s ease;
    }
    
    .hero-content-container {
        padding-top: 60px !important; /* Réduit pour être remonté */
        padding-bottom: 80px !important;
        min-height: 100vh;
        display: flex;
        align-items: flex-start; /* Commence en haut */
        justify-content: flex-start; /* Commence en haut */
    }
    
    /* Indicateurs repositionnés */
    .slider-indicators {
        position: relative !important;
        bottom: auto !important;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Statistiques repositionnées */
    .hero-stats {
        position: relative !important;
        bottom: auto !important;
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    /* Cacher l'animation auto, permettre le scroll manuel */
    .slider-indicators {
        cursor: pointer;
    }
}

/* Pour les très petits écrans */
@media (max-height: 500px) {
    .hero-content-container {
        padding-top: 40px !important; /* Encore plus remonté */
        padding-bottom: 60px !important;
    }
    
    .hero-content {
        margin: 1rem !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Correction minimaliste pour CTA */
@media (max-width: 420px) {
    .cta-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
        margin-bottom: 0.75rem !important;
    }
    
    .cta-content .lead {
        font-size: 1rem !important;
        line-height: 1.4;
        margin-bottom: 1.5rem !important;
    }
    
    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-action {
        background: var(--oif-gray-50);
        border-radius: var(--radius-lg);
        padding: 1.25rem;
    }
    
    .cta-action h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-block {
        width: 100%;
        padding: 0.75rem !important;
        font-size: 0.95rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .btn i {
        font-size: 0.9em;
        margin-right: 0.4rem;
    }
}