/* Variables CSS */
        :root {
            --primary: #1a3a6c;
            --accent: #ff6b35;
            --light: #f8f9fa;
            --dark: #1a3a6c;
            --gray: #6c757d;
            --white: #ffffff;
        }
        /* CORRECTION GLOBALE DU DÉBORDEMENT */
* {
    box-sizing: border-box;
    max-width: 100%;
}



        /* Styles Globaux */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.5;
            background-color: var(--white);
            overflow-x: hidden;
            opacity: 0;
            width: 100%;
            animation: fadeInBody 0.5s ease-in-out forwards;
            text-align: justify;
            position: relative;
        }

        @keyframes fadeInBody { from { opacity: 0; } to { opacity: 1; } }

        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.3; color: var(--primary); }
        .text-accent { color: var(--accent); }
        section { padding: 20px 0; overflow: hidden; }

        /* Boutons */
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
            cursor: pointer;
            font-size: 16px;
        }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
        .btn-outline { background: transparent; color: var(--accent); }
        .btn-outline:hover { background: var(--accent); color: white; }
        /* Style pour le bouton transparent UNIQUEMENT dans la section hero */
        .hero .btn-outline {
            background: transparent;
            color: var(--white);
            border-color: var(--white);}

        .hero .btn-outline:hover {
            background: var(--white);
            color: var(--accent);}

        /* Header */
        header#main-header { position: fixed; top: 0; left: 0; z-index: 1000; background: transparent; padding: 15px 0; width: 100%; transition: all 0.4s ease-out; }
        header#main-header.scrolled { background: var(--white); position: fixed; top: 0; left: 0; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
        
        header#main-header.scrolled .nav-links a,
header#main-header.scrolled .header-actions a,
header#main-header.scrolled .lang-trigger,
header#main-header.scrolled .menu-toggle {
    color: var(--primary); /* Les liens et icônes deviennent blancs */
}

        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .header-logo img { height: 40px; transition: all 0.3s ease; }
        header.scrolled .header-logo img { height: 40px; }
        .nav-links { display: flex; align-items: center; gap: 35px; }
        .nav-links a {
            color: var(--white); text-decoration: none; font-weight: 500;
            position: relative; padding: 5px 0; transition: color 0.3s ease;
        }
        header.scrolled .nav-links a { color: var(--white); }
        .nav-links a:hover, .nav-links a.active { color: var(--accent); }
        header.scrolled .nav-links a:hover, header.scrolled .nav-links a.active { color: var(--accent); }
        .nav-links a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
            background: var(--accent); transition: width 0.3s ease;
        }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
        .header-actions { display: flex; align-items: center; gap: 20px; }

        /* Styles pour le menu de langues */
        .language-switcher {
            position: relative;
        }
        .lang-trigger {
            cursor: pointer;
            color: var(--white);
            font-size: 22px;
            transition: color 0.3s ease;
        }
        header.scrolled .lang-trigger {
            color: var(--white);
        }
        .lang-trigger:hover {
            color: var(--accent);
        }
        .lang-menu {
            position: absolute;
            top: 150%;
            right: 0;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            list-style: none;
            padding: 5px;
            min-width: 120px;
            z-index: 10;
            opacity: 0;
            transform: translateY(10px);
            visibility: hidden;
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        }
        .language-switcher.active .lang-menu {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
        .lang-menu li a {
            display: block;
            padding: 8px 15px;
            color: var(--primary);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        .lang-menu li a:hover {
            background-color: var(--light);
            color: var(--accent);
        }

        /* Hero */
        .hero {
            color: var(--white); padding: 120px 0 120px 0; text-align: center; position: relative;
            background-image: linear-gradient(rgba(26, 58, 108, 0.7), rgba(15, 33, 61, 0.8)), url('./images/background.jpg');
            background-size: cover; background-position: center; background-attachment: fixed;
        }
        .hero h1 { color: var(--white); font-size: 52px; font-weight: 800; line-height: 1.2; max-width: 800px; margin: 0 auto 20px auto; }
        .hero p { font-size: 18px; margin: 0 auto 30px auto; max-width: 800px; opacity: 0.9; }
        .hero-buttons { display: flex; justify-content: center; gap: 15px; align-items: center; }
        .hero .btn-outline { color: var(--white); border-color: var(--white); }
        .hero .btn-outline:hover { background: var(--white); color: var(--accent); }
        
        /* Animations */
        .animated-item {
            opacity: 0; transform: translateY(40px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animated-item.is-visible { opacity: 1; transform: translateY(0); }
        
        /* Titres de section */
        .section-title { text-align: center; margin-bottom: 20px; position: relative; }
        .section-title h2 { font-size: 28px; display: inline-block; padding-bottom: 15px; }
        .section-title h2::after {
            content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 150px; height: 4px; background: var(--accent); border-radius: 2px;
        }
        
        /* Section Expertise MODIFIÉE */
        .expertise-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); /* Passage à 3 colonnes */
            gap: 30px; 
        }
        .expertise-card {
            background: white; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-top: 4px solid var(--accent); overflow: hidden; display: flex; flex-direction: column;
        }
        .expertise-card:hover { transform: translateY(-5px) !important; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
        .expertise-content { padding: 10px; flex-grow: 1; display: flex; flex-direction: column; }
        .expertise-icon { font-size: 26px; color: var(--accent); margin-bottom: 10px; }
        .expertise-content h3 { font-size: 20px; margin-bottom: 15px; }
        .expertise-content p { color: var(--gray); flex-grow: 1; }
        
        /* Centrage du titre et de l'icône dans les cartes expertise */
.expertise-card .expertise-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.expertise-card .expertise-icon {
    margin-bottom: 8px;
    font-size: 2em;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.expertise-card h3 {
    text-align: center;
    margin-bottom: 8px;
}
@media (max-width: 900px) {
    .expertise-card .expertise-content {
        align-items: center;
        text-align: center;
    }
    .expertise-card h3 {
        text-align: center;
    }
}

        .learn-more-link {
            text-decoration: none; color: var(--accent); font-weight: 600;
            margin-top: 20px; display: inline-block;
            transition: transform 0.3s ease;
        }
        .learn-more-link:hover { transform: translateX(5px); }
        .learn-more-link .fa-arrow-right { margin-left: 5px; transition: transform 0.3s ease; }
        .learn-more-link:hover .fa-arrow-right { transform: translateX(3px); }

        /* Autres sections */
        .stats-section { padding: 30px 0; background: var(--light); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
        .stat-item h3 { font-size: 30px; color: var(--accent); }
        .stat-item p { font-size: 16px; color: var(--gray); }
        .about-content { display: flex; align-items: center; gap: 20px; }
        .about-image img { width: 350px; height: auto; display: block; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .mission-vision { background: var(--light); }
        .mission-vision .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .mission-box, .vision-box { background: var(--white); border: 1px solid #eee; padding: 30px; border-radius: 10px; }
        .mission-box h3, .vision-box h3 { display: flex; align-items: center; gap: 10px; }
        .values { background-color: var(--light); }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin: 0 auto;         /* ← Centre le container */}
    .values-section .container {
    display: flex;
    justify-content: center;
}
        .value-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
        .value-card:hover { transform: translateY(-5px) !important; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
        .value-icon { font-size: 26px; color: var(--accent); margin-bottom: 20px; }
        .why-choose-us { background-color: var(--white); }
        .features-list { max-width: 800px; margin: 20px auto 0 auto; }
        .feature-item { display: flex; align-items: flex-start; margin-bottom: 20px; padding: 10px; background: var(--light); border-radius: 10px; }
        .feature-item:hover { transform: translateX(5px) !important; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .feature-icon { font-size: 18px; color: var(--accent); min-width: 40px; }
        
        /* Section CTA MODIFIÉE */
        .cta-section { 
            text-align: center; 
            padding: 80px 0; 
            background: var(--light); /* Changement de couleur de fond */
            color: var(--dark); /* Changement de couleur de texte par défaut */
        }
        .cta-section h2 { 
            color: var(--primary); /* Le titre principal reste de la couleur primaire */
        }
        .cta-section p { 
            margin: 15px auto 30px auto; 
            color: var(--gray); /* Texte secondaire en gris */
            max-width: 500px; 
        }
         /* --- Styles de la page Services --- */
        .page-header { 
    padding: 80px 0; 
    background-color: var(--primary); 
    text-align: center; 
    color: var(--white); 
}
        .page-header h1 { 
    color: var(--white); 
    font-size: 26px; 
}
        .page-header p { 
    font-size: 18px; 
    color: rgba(255,255,255,0.8); 
    max-width: 700px; 
    margin: 15px auto 0 auto; 
}
        .services-list-section { 
    padding: 20px 0; 
}
        .service-block { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 50px; 
}
        .service-block:last-child { 
    margin-bottom: 0; 
}
        .service-block:nth-child(even) { 
    flex-direction: row-reverse; 
}
        .service-image { 
    flex: 1; 
    min-width: 300px; 
}
        .service-image img { 
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    aspect-ratio: 3/2; 
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
        .service-info { 
    flex: 1; 
}
        .service-info h2 { 
    font-size: 24px; 
    margin-bottom: 10px; 
}
        .service-info p.description { 
    color: var(--gray); 
    font-size: 14px; 
    margin-bottom: 20px; 
}
        .sub-services-list { 
    list-style: none; 
    padding: 0; 
    margin-bottom: 20px; 
}
.sub-services-list li { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    margin-bottom: 15px; 
    font-size: 14px; 
    text-align: justify;
}
.sub-services-list i { 
    color: var(--accent); 
    font-size: 18px; 
    margin-top: 5px; 
}

               /* Styles de la page de sous services*/

        
        .feature-section { padding-top: 20px; padding-bottom: 20px; }
        .feature-content { display: flex; align-items: center; gap: 10px; }
        .feature-text { flex: 1; }
        .feature-text h2 { font-size: 24px; margin-bottom: 20px;}
        .feature-text p { color: var(--gray); }
        .feature-image { flex: 1; }
        .feature-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .sub-services-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .sub-service-card { background: var(--light); padding: 10px; border-radius: 10px; border-left: 5px solid var(--accent); transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .sub-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .sub-service-card .icon { font-size: 26px; color: var(--accent); margin-bottom: 10px; }
        .sub-service-card h3 { font-size: 24px; margin-bottom: 15px; }
        .sub-service-card p { color: var(--gray); margin-bottom: 20px; }
        .sub-service-card ul { list-style: none; padding-left: 0; color: var(--gray); }
        .sub-service-card ul li { padding-left: 25px; position: relative; margin-bottom: 10px; }
        .sub-service-card ul li::before { content: '\f058'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--accent); position: absolute; left: 0; top: 2px; }
        .cta-section { text-align: center; padding: 20px 0; background-color: var(--light); }
        .cta-section h2 { font-size: 26px; max-width: 600px; margin: 0 auto 20px auto; color: var(--primary); }
        .cta-section p { margin-bottom: 20px; color: var(--gray); font-size: 18px; }
        
        .animated-item { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .animated-item.is-visible { opacity: 1; transform: translateY(0); }
        

        /* Animations */
        .animated-item { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .animated-item.is-visible { opacity: 1; transform: translateY(0); }
        
        
        /* Styles de la page A-Propos */
        .page-header { padding-top: 130px; background-color: var(--primary); text-align: center; color: var(--white); }
        .page-header h1 { color: var(--white); font-size: 26px; }
        .page-header p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 700px; margin: 15px auto 0 auto; }
        .story-section { display: flex; align-items: center; gap: 20px; }
        .story-text { flex: 1; }
        .story-text h2 { font-size: 24px; margin-bottom: 20px;}
        .story-text p { color: var(--gray); margin-bottom: 15px; }
        .story-image { flex: 1; }
        .story-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .mission-vision { background: var(--light); }
        .mission-vision .container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .mission-box, .vision-box { background: var(--white); border: 1px solid #eee; padding: 10px; border-radius: 10px; }
        .mission-box h3, .vision-box h3 { display: flex; align-items: center; gap: 50px; font-size: 24px; }
        .mission-box h3 i,
        .vision-box h3 i {
            color: var(--accent);
}
        .team-section { text-align: center; }
        .team-section h2 { font-size: 24px; margin-bottom: 20px; }
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 900px; /* Largeur ajustée pour 3 cartes */ margin: 0 auto; }
        .team-card { background: var(--light); border-radius: 10px; padding: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .team-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 5px solid var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 10px; }
        .team-card h3 { font-size: 18px; }
        .team-card h4 { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
        .team-card p { font-size: 15px; color: var(--gray); margin-bottom: 20px; }
        .team-socials a { color: var(--primary); font-size: 20px; margin: 0 10px; transition: color 0.3s ease; }
        .team-socials a:hover { color: var(--accent); }
        .values-section { background: var(--light); }
        .values-section h2 { font-size: 24px; text-align: center; margin-bottom: 20px; }
        .values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }
        .value-card { background: white; padding: 10px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
        .value-icon { font-size: 26px; color: var(--accent); margin-bottom: auto; }
        .cta-section { text-align: center; padding: 20px 0; }
        .cta-section h2 { font-size: 24px; max-width: 600px; margin: 0 auto 20px auto; color: var(--primary); }
        .cta-section p { margin-bottom: 20px; color: var(--gray); font-size: 18px; }
        .animated-item { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .animated-item.is-visible { opacity: 1; transform: translateY(0); }

        /* Footer */
        footer { background: var(--dark); color: white; padding: 30px 0 20px; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-section h3 { color: white; font-size: 20px; position: relative; padding-bottom: 10px; }
        .footer-section h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--accent); }
        .footer-section p, .footer-section a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s ease; }
        .footer-section a:hover { color: white; }
        .footer-section .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .footer-section .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); color: white; border-radius: 50%; }
        .footer-section .social-links a:hover { background: var(--accent); }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.2); font-size: 14px; opacity: 0.7; }
        
        .footer-legal-links {
            margin-top: 15px;
        }
        .footer-legal-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            margin: 0 10px;
            font-size: 13px;
            transition: color 0.3s ease;
        }
        .footer-legal-links a:hover {
            color: var(--white);
        }
        
        /* Cache le menu hamburger sur les grands écrans par défaut */
.menu-toggle {
    display: none;
}

        /* Media Queries */
        
        /* --- Styles pour les tablettes --- */
@media (max-width: 992px) {
    .menu-toggle { display: block; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--white); }
    .nav-links, .header-actions { display: none; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(5, 1fr); }
    .sub-services-container {
        grid-template-columns: 1fr;
        /* On passe à UNE seule colonne */
    }
        /* Règle qui force l'affichage en une colonne pour les services */
    .service-block, .service-block:nth-child(even) {
        flex-direction: column; /* Empile l'image et le texte */
        text-align: center;
    }
    /* CORRECTION pour la section "Notre Approche" */
    .feature-content {
        flex-direction: column; /* Empile l'image et le texte */
        text-align: center;
    }
    .feature-image {
        order: -1; /* Met l'image au-dessus du texte */
        margin-bottom: 30px;
    }

}
    .story-section { flex-direction: column; text-align: center; }
    .story-image { order: -1; margin-bottom: 30px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

    
    
         @media (max-width: 760px) {
    .mission-vision .container, .expertise-grid, .footer-content { grid-template-columns: 1fr; }
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); }
    .mission-vision .container,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-main { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: flex-start; }
    .values-grid { grid-template-columns: repeat(2, 1fr); align-items: center; } /* CORRECTION ICI */
    .about-content { flex-direction: column; text-align: center; gap: 30px; }
    .about-image { order: -1; }
    .footer-section { text-align: center; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); /* Pour LTR */ }
    html[dir="rtl"] .footer-section h3::after { transform: translateX(50%); } /* Pour RTL */
    .footer-section .social-links { justify-content: center; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section-title h2 { font-size: 22px; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 130px; margin-top: 100px; }
    .btn { width: 100%; font-size: 14px; padding: 10px 20px; }
    .article-header h1 { font-size: 32px; }
    .footer-content { grid-template-columns: 1fr; }
}
        
        /* Styles pour menu mobile */
        .menu-toggle {
            background: none; border: none; font-size: 26px; cursor: pointer; color: var(--white);
            transition: color 0.3s ease;
        }
        header.scrolled .menu-toggle { color: var(--white); }
        .nav-mobile {
            display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
            flex-direction: column; padding: 10px 0; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            border-top: 1px solid #eee; opacity: 0; transform: translateY(-10px);
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }
        .nav-mobile.active { display: flex; opacity: 1; transform: translateY(0); }
        .nav-mobile a {
            color: var(--dark); text-decoration: none; padding: 15px 0;
            width: 100%; text-align: center; transition: background-color 0.3s, color 0.3s;
        }
        .nav-mobile a:hover { background-color: var(--light); color: var(--accent); }
        .nav-mobile .btn { margin: 15px 30px; width: auto; }
        .nav-mobile-langs {
            padding: 10px 20px;
            text-align: center;
            background-color: var(--light);
        }
        .nav-mobile-langs span {
            font-weight: 600;
            color: var(--dark);
            margin-right: 10px;
        }
        .nav-mobile-langs a {
            display: inline;
            padding: 5px;
            color: var(--accent);
            font-weight: 600;
        }
        
        /* Mentions légales modernisées */
.legal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(26,58,108,0.08);
    padding: 36px 32px;
    max-width: 800px;
    margin: 40px auto;
}
.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a3a6c;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.legal-content h2 .fa {
    font-size: 1.1em;
    color: #ff6b35;
}
.legal-content ul {
    margin: 18px 0 18px 24px;
    padding-left: 0;
}
.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}
.legal-content strong { color: #1a3a6c; }
/* Icônes colorées pour les titres des sections légales */
.legal-content h2 .fa-building { color: #0099ff; }
.legal-content h2 .fa-server { color: #25d366; }
.legal-content h2 .fa-copyright { color: #ffb347; }
.legal-content h2 .fa-gavel { color: #1a3a6c; }
.legal-content h2 .fa-exclamation-triangle { color: #ff6b35; }
.legal-content h2 .fa-user-shield { color: #ff6b35; }
.legal-content h2 .fa-database { color: #0099ff; }
.legal-content h2 .fa-envelope-open-text { color: #25d366; }
.legal-content h2 .fa-lock { color: #ffb347; }
.legal-content h2 .fa-user-check { color: #1a3a6c; }
.legal-content h2 .fa-question-circle { color: #ff6b35; }