:root {
    --primary-color: #4CAF50;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --text-dark: #2c3e50;
    --text-medium: #666;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Classe utilitaire pour contenu invisible à l'écran mais lisible par les moteurs IA/crawlers */
.invisible-seo {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

/* Header */
.main-header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation */
.main-nav {
    background: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    justify-content: center;
}

.main-nav .menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.main-nav .menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.main-nav .menu a:hover,
.main-nav .menu a.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    min-width: 250px;
    padding: 0.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 0.5rem 1rem;
    color: white;
    opacity: 0.9;
}

.submenu a:hover {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

/* Sous-menus */
/*.submenu {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    background: var(--secondary-color);*/
/*    min-width: 250px;*/
/*    list-style: none;*/
/*    padding: 0.5rem 0;*/
/*    margin: 0;*/
/*    border-radius: 0 0 var(--border-radius) var(--border-radius);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(-10px);*/
/*    transition: all 0.3s ease;*/
/*    z-index: 1000;*/
/*}*/

/*.has-submenu:hover .submenu {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*}*/

/*.submenu a {*/
/*    padding: 0.5rem 1.5rem;*/
/*    font-size: 0.95rem;*/
/*}*/

/*.submenu a:hover {*/
/*    background: rgba(255,255,255,0.15);*/
/*}*/

/* Mobile responsive - MIGRATED TO CONSOLIDATED RESPONSIVE SECTION (line 3320+) */
/* @media (max-width: 768px) {
    .menu {
        flex-direction: column;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.1);
        display: none;
    }

    .has-submenu:hover .submenu {
        display: block;
    }
} */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
    flex: 1;
}

.eval-btn {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    white-space: nowrap;
    text-align: center;
}

.eval-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.eval-btn i {
    font-size: 1rem;
}

.brand-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.main-logo {
    height: 50px;
    width: auto;
}

.supported-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #666;
}

.support-logo {
    height: 30px;
    width: auto;
}

/* Styles pour les listes avec crochets - uniquement pour le contenu, pas le menu */
.page-content ul li::before {
    content: "✓";
    color: #4CAF50;
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
}

.page-content ul.erreurs li::before {
    content: "✗";
    color: #f44336;
}

.contact-info {
    text-align: right;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.phone-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('attached_assets/image_1747493164080.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../attached_assets/image_1747513052665.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: white;
}

.conseils-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../attached_assets/image_1747525917540.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: white;
}

.loi25-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../attached_assets/image_1747514636287.png');
    background-position: center 35%;
    background-size: cover;
    padding: 8rem 0;
}

.obligations-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../attached_assets/image_1747513052665.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8rem 0;
    min-height: 500px;
    color: white;
    width: 100%;
}

.obligations-hero .hero-content {
    color: white;
}

.obligations-hero .hero-title {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.obligations-hero .hero-subtitle {
    color: white;
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.intro-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intro-section .main-title {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intro-section .subtitle {
    color: #34495e;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.context-box {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
    border-radius: 0 4px 4px 0;
}

.context-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.key-points {
    background: #ebf5fb;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.key-points p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #2c3e50;
}

.important-note {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 500;
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

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

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 400px;
    color: var(--text-color);
}

.quick-contact-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.quick-phone {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-form input,
.quick-form select {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 2rem;
}

.testimonials-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.95);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    min-height: 140px;
    margin: 0 auto;
}

.testimonial-text {
    color: #ffffff;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: left;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonial-author-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-author {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.3rem;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.testimonial-fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

/* MIGRATED TO CONSOLIDATED SECTION (line 3749+) */
/* @media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .quick-contact-card {
        width: 100%;
        max-width: 500px;
    }

    .testimonials-section {
        margin-top: 2rem;
        text-align: center;
    }

    .testimonial-card {
        margin: 0 auto;
        max-width: 500px;
    }

    .testimonial-author-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.read-more {
    margin-top: 1rem;
    color: #0097FB;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Free Tools Section */
.free-tools {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-description {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.tool-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    width: 100%;
}

.tool-content p {
    color: #666;
    margin-bottom: 1.5rem;
    width: 100%;
}

.download-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    padding: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    font-size: 28px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

textarea {
    height: 120px;
    resize: vertical;
}

.consent-box {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
}

.consent-box input[type="checkbox"] {
    width: auto;
    margin: 0.3rem 0 0 0;
}

.consent-box label {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #888;
}

.consent-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.consent-box a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.banner-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner-overlay {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.legal-table th,
.legal-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.legal-table tr:hover {
    background-color: #f5f5f5;
}

.note {
    font-style: italic;
    color: #666;
    margin: 15px 0;
}

/* Page Content */
.page-content {
    padding: 3rem 0;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.page-content .table-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.leave-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.leave-table th,
.leave-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.leave-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.leave-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #eee;
}

th {
    background: var(--light-gray);
    color: var(--text-color);
}

tr:nth-child(even) {
    background: #f9f9f9;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.page-content h1 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.page-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content .main-title {
    color: var(--secondary-color);
    font-size: 2.4rem;
    text-align: center;
    margin: 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.page-content h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.page-content h3 {
    color: var(--secondary-color);
    font-size: 1.7rem;
    margin: 2.5rem 0 1.2rem;
}

.page-content p {
    max-width: 800px;
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.page-content ul {
    max-width: 800px;
    margin: 1.5rem 0;
    padding-left: 1.2rem;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 0;
    list-style-type: none;
    text-align: left;
}

.page-content li strong {
    color: var(--secondary-color);
}

.page-content .key-points {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-content .point {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.banner-subtitle {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

.banner-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.page-content ul {
    max-width: 800px;
    margin: 1rem auto;
    padding-left: 2rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: #f9f9f9;
}

.cta-section {
    background: var(--light-gray);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: var(--border-radius);
    text-align: left;
}

.cta-section h3,
.cta-section .cta-buttons {
    text-align: center;
}

.cta-section .cta-buttons {
    margin-top: 2rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 3rem 0 2rem;
    color: white;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-nav {
    text-align: center;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-legal {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .quick-contact-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MIGRATED TO CONSOLIDATED SECTION (line 3548+) */
/* @media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .eval-btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
        text-align: center;
        justify-content: center;
    }

    .main-nav .menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .main-nav .menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

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

    .form-group {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .service-grid, .tools-grid {
        grid-template-columns: 1fr;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 1rem 0;
    }

    .menu.active {
        display: block;
    }

    .submenu {
        position: static;
        width: 100%;
        display: none;
        padding-left: 2rem;
    }

    .has-submenu:hover .submenu {
        display: block;
    }
}

/* MIGRATED TO CONSOLIDATED SECTION (line 3505+) */
/* @media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .banner-title {
        font-size: 1.8em;
    }

    .btn {
        width: 100%;
    }

    .phone-number {
        font-size: 1.2rem;
    }
} */

/* Loi 25 Page Styles */
.guide-download-box {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.guide-download-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.guide-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.guide-icon {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

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

.guide-title h3 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.guide-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.guide-description {
    margin-bottom: 2.5rem;
}

.guide-description p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.feature-item span {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.guide-cta {
    text-align: center;
    margin-top: 2rem;
}

.guide-download-btn {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.guide-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, var(--primary-color));
    border-color: rgba(255,255,255,0.2);
}

.guide-download-btn i {
    font-size: 1.3rem;
}

.content-section {
    margin-bottom: 3rem;
}

.reality-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reality-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

.reality-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reality-card h4 {
    margin: 0 0 1rem 0;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.situation-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.situation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.situation-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.situation-header h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.context {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.risk-section, .solution-section {
    margin-bottom: 1rem;
}

.risk-label, .solution-label {
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.risk-label {
    color: #dc3545;
}

.solution-label {
    color: var(--primary-color);
}

.preparation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 2rem;
    border-left: 6px solid var(--primary-color);
}

.highlight-box h2 {
    margin-top: 0;
    color: var(--secondary-color);
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-item span {
    color: var(--secondary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .download-btn {
        margin: 0 auto;
    }

    .reality-cards,
    .situations-grid {
        grid-template-columns: 1fr;
    }

    .preparation-steps {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Loi 68 Page Styles */
.content-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.main-content {
    max-width: none;
}

.sidebar-contact {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.12);
}

.contact-header {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.quick-call {
    text-align: center;
    margin-bottom: 1rem;
}

.call-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.call-btn i {
    margin-right: 0.4rem;
}

.divider {
    text-align: center;
    margin: 1rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: white;
    padding: 0 0.8rem;
    color: #666;
    font-size: 0.85rem;
}

.sidebar-form .form-group {
    margin-bottom: 0.8rem;
}

.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}

.sidebar-form input:focus,
.sidebar-form select:focus,
.sidebar-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Styles pour formulaire vertical */
.vertical-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vertical-form input,
.vertical-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.vertical-form input:focus,
.vertical-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.vertical-form select {
    color: #666;
}

.vertical-form select option {
    color: #333;
}

.consent-checkbox {
    margin: 0.8rem 0;
}

.consent-checkbox label {
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
    line-height: 1.3;
}

.consent-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.consent-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.submit-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.vertical-form .submit-btn {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.alert-box {
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-box.urgent {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #f39c12;
}

.alert-icon {
    font-size: 1.5rem;
    color: #f39c12;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.alert-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.alert-content p {
    margin: 0;
    color: #333;
}

.intro-section {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}

.highlight-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-color);
}

.highlight-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restriction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.restriction-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.card-header i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

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

.checkmark-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.checkmark-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.warning-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.warning-note i {
    color: #f39c12;
    margin-top: 0.2rem;
}

.warning-note p {
    margin: 0;
    color: #333;
}

.permissions-section {
    margin-bottom: 3rem;
}

.permissions-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.permissions-grid {
    display: grid;
    gap: 1rem;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 10px;
    background: white;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.permission-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.permission-item h4 {
    margin: 0 0 0.3rem 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

.permission-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.action-section {
    margin-bottom: 3rem;
}

.action-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--primary-color);
}

.action-number {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.action-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.action-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.key-takeaways {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fdf4 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.key-takeaways h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.takeaway-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.takeaway-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.takeaway-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.takeaway-card h3 {
    margin: 0 0 0.8rem 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.takeaway-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar-contact {
        position: static;
        order: -1;
    }

    .contact-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .restriction-grid,
    .action-grid,
    .takeaway-cards {
        grid-template-columns: 1fr;
    }

    .contact-features {
        flex-direction: column;
        gap: 0.8rem;
    }

    .contact-features .feature {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
}

/* Projet de loi 101 Page Styles */
.conversion-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    border-bottom: 3px solid var(--primary-color);
    width: 100%;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-main .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-main .hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.urgency-box {
    display: flex;
    align-items: center;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.urgency-icon {
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.urgency-text {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.4;
}

.conversion-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.conversion-point {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1rem;
}

.point-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.point-text {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-cta-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 4px solid var(--primary-color);
    position: sticky;
    top: 2rem;
}

.cta-header h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-header p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cta-benefits {
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.benefit-item i {
    color: #4CAF50;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.trust-indicator i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

@media (max-width: 968px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta-box {
        position: static;
    }

    .hero-main .hero-title {
        font-size: 2rem;
    }
}

/* MIGRATED TO CONSOLIDATED SECTION (line 3531+) */
/* @media (max-width: 640px) {
    .conversion-hero {
        padding: 2.5rem 0;
    }

    .hero-main .hero-title {
        font-size: 1.75rem;
    }

    .conversion-point {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .point-icon {
        margin-right: 0;
    }
} */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.impact-icon i {
    color: white;
    font-size: 1.2rem;
}

.impact-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.impact-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

.changes-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 16px;
}

.changes-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.change-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.change-card.priority-high {
    border-left-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f2, #ffffff);
}

.change-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.change-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.change-card.priority-high .change-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.change-icon i {
    color: white;
    font-size: 1.1rem;
}

.change-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

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

.change-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.change-list li:last-child {
    margin-bottom: 0;
}

.change-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.change-card.priority-high .change-list i.fa-exclamation-circle {
    color: #ff6b35;
}

.action-section {
    margin: 4rem 0;
}

.action-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.action-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

.action-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-3px);
}

.action-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.action-content {
    padding-top: 1rem;
}

.action-content h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.action-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

.help-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
}

.help-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.help-content h2 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.help-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.help-list {
    list-style: none;
    padding: 0;
}

.help-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.help-list i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.final-cta.priority-high {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.final-cta.priority-high h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta.priority-high h2 i {
    margin-right: 0.5rem;
}

.final-cta.priority-high p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .help-section {
        padding: 2rem;
    }

    .final-cta.priority-high {
        padding: 2rem;
    }
}

/* Modern Obligations Page Styles */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.intro-modern {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-icon {
    flex-shrink: 0;
}

.intro-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    background: white;
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.intro-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.alert-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.alert-banner i {
    font-size: 2.5rem;
    color: #856404;
}

.alert-content h3 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.alert-content p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.laws-section {
    margin: 4rem 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title i {
    color: var(--primary-color);
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
}

.laws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.law-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.law-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.law-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.law-icon {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.priority-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.priority-badge.high {
    background: #ff4757;
    color: white;
}

.priority-badge.medium {
    background: #ffa502;
    color: white;
}

.priority-badge.normal {
    background: #747d8c;
    color: white;
}

.law-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.law-card h3 a {
    color: inherit;
    text-decoration: none;
}

.law-card h3 a:hover {
    color: var(--primary-color);
}

.law-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.feature {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
    border: 1px solid #e9ecef;
}

.feature i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.law-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.law-cta:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.why-choose-us {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    color: white;
}

.why-choose-us .section-title {
    color: white;
    text-align: center;
    justify-content: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.final-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid var(--primary-color);
}

.final-cta h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .intro-modern {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .alert-banner {
        flex-direction: column;
        text-align: center;
    }

    .laws-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons-large {
        flex-direction: column;
    }

    .final-cta h2 {
        font-size: 2rem;
        flex-direction: column;
    }
}

/* Add your styles here */
/* Styles pour la politique de confidentialité */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.page-header {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.header-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.header-overlay {
    position: relative;
}

.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    width: 80%;
}

.content-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

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

.policy-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
}

.section-title {
    color: #1a4f72;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.security-measures {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.security-measures li {
    margin-bottom: 1rem;
}

.important-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
}

.rights-section ul {
    list-style-type: none;
    padding-left: 0;
}

.rights-section li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.rights-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

.contact-info {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.policy-dates {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    font-size: 0.9rem;
    color: #6c757d;
}

.emergency-form {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.emergency-form .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.emergency-form h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

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

.emergency-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 500;
}

.emergency-form input,
.emergency-form select,
.emergency-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.emergency-form input:focus,
.emergency-form select:focus,
.emergency-form textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    outline: none;
}

.emergency-form textarea {
    min-height: 150px;
}

.emergency-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.emergency-form .btn-primary:hover {
    background: #43A047;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.emergency-form .consent-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.emergency-form .alert {
    color: #FF0000;
    text-align: center;
    font-weight: 900;
    padding: 1.5rem;
    margin-bottom: 4rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 2px solid #FF0000;
    font-size: 1.4em;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.1);
}

/* ============================================
   SECTION RESPONSIVE CONSOLIDÉE
   Architecture mobile-first avec breakpoints progressifs
   Breakpoints : 480px, 640px, 768px, 992px, 1200px
   Migration complète des 11 media queries dispersées
   ============================================ */

/* ===== MENU MOBILE HAMBURGER (< 768px) ===== */
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        width: 44px;
        height: 44px;
        position: relative;
        z-index: 1001;
        margin: 0 auto 1rem;
    }
    
    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: white;
        margin: 5px auto;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    .main-nav .container {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav .menu {
        display: none;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--secondary-color);
        padding: 80px 0 2rem 0;
        overflow-y: auto;
        z-index: 100;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav .menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .main-nav .menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav .menu li:last-child > a {
        border-bottom: none;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
    }
    
    .has-submenu.submenu-open .submenu {
        display: block;
        max-height: 1000px;
    }
    
    .submenu a {
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem !important;
    }
    
    .has-submenu > .menu-link::after {
        content: '\25BC';
        font-size: 0.7rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .has-submenu.submenu-open > .menu-link::after {
        transform: rotate(180deg);
    }
}

/* ===== DESKTOP : Cacher hamburger et afficher menu normal (>= 768px) ===== */
@media (min-width: 768px) {
    .menu-toggle {
        display: none !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
    
    .main-nav .menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    .has-submenu > .menu-link::after {
        display: none;
    }
}

/* ===== BASE MOBILE STYLES (< 480px) ===== */
/* Styles par défaut pour petits mobiles, surchargés par min-width */
@media (max-width: 479px) {
    /* Header Mobile */
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .brand-container {
        text-align: center;
    }
    
    .main-logo {
        max-width: 150px;
        height: auto;
    }
    
    .supported-by {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .support-logo {
        max-width: 100px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .eval-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
    
    .phone-label {
        font-size: 0.8rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    /* Hero Sections Mobile */
    .hero-modern {
        padding: 50px 15px !important;
    }
    
    .hero-modern h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
        line-height: 1.3 !important;
    }
    
    .hero-modern p {
        font-size: clamp(0.95rem, 3vw, 1.1rem) !important;
    }
    
    .hero-modern .btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        width: 100%;
        justify-content: center;
    }
    
    /* Badges hero */
    .hero-modern div[style*="backdrop-filter"] {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
    }
    
    /* Grids/Cards Mobile */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Formulaires Mobile */
    .form-group {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    input, select, textarea, button {
        font-size: 16px !important; /* Évite zoom iOS */
    }
    
    .btn-submit {
        padding: 15px !important;
        font-size: 1rem !important;
    }
    
    /* Tables Mobile */
    table {
        font-size: 0.85rem;
    }
    
    table th,
    table td {
        padding: 10px 8px !important;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 18px !important;
        font-size: 0.95rem !important;
    }
    
    .faq-answer {
        font-size: 0.9rem !important;
    }
    
    /* Footer Mobile */
    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Containers Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* CTA Buttons Mobile */
    div[style*="flex"][style*="gap"] a.btn {
        width: 100%;
        justify-content: center !important;
    }
    
    /* ===== BATCH 1: Rules from max-width: 480px & 640px ===== */
    /* From line 1282 - max-width: 480px */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .banner-title {
        font-size: 1.8em;
    }
    
    .btn {
        width: 100%;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
    
    /* From line 2383 - max-width: 640px */
    .conversion-hero {
        padding: 2.5rem 0;
    }
    
    .conversion-point {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .point-icon {
        margin-right: 0;
    }
    
    /* ===== BATCH 2: Rules from max-width: 768px (5 queries) ===== */
    /* From lines 1204, 1664, 2181, 2680, 3057 */
    
    /* Header & Nav (line 1204) */
    .main-nav .menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .menu.active {
        display: block;
    }
    
    /* Hero & CTA */
    .hero h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Grids (all variations) */
    .service-grid, .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .download-btn {
        margin: 0 auto;
    }
    
    .reality-cards,
    .situations-grid {
        grid-template-columns: 1fr;
    }
    
    .preparation-steps {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .restriction-grid,
    .action-grid,
    .takeaway-cards {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .laws-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact features */
    .contact-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-features .feature {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    /* Hero stats & intro */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-modern {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .alert-banner {
        flex-direction: column;
        text-align: center;
    }
    
    /* Sections & CTA */
    .help-section {
        padding: 2rem;
    }
    
    .final-cta.priority-high {
        padding: 2rem;
    }
    
    .cta-buttons-large {
        flex-direction: column;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        flex-direction: column;
    }
}

/* Small Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    /* Header */
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .main-logo {
        max-width: 180px;
    }
    
    .eval-btn {
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero-modern {
        padding: 60px 20px !important;
    }
    
    .hero-modern h1 {
        font-size: clamp(2rem, 6vw, 3rem) !important;
    }
    
    .hero-modern p {
        font-size: clamp(1rem, 3.5vw, 1.25rem) !important;
    }
    
    /* Grids 2 colonnes */
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Header */
    .header-actions {
        gap: 1.5rem;
    }
    
    .eval-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    /* Hero */
    .hero-modern {
        padding: 80px 25px !important;
    }
    
    .hero-modern h1 {
        font-size: clamp(2.5rem, 7vw, 3.5rem) !important;
    }
    
    /* Navigation */
    .main-nav .menu {
        gap: 1.5rem;
    }
    
    /* Grids responsive */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px"] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }
    
    /* Tables */
    table {
        font-size: 0.9rem;
    }
    
    /* ===== BATCH 3: Rules from max-width: 992px (2 queries) ===== */
    /* From lines 535, 1183 */
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-section {
        margin-top: 2rem;
        text-align: center;
    }
    
    .testimonial-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .testimonial-author-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* ===== BATCH 5: Rules from max-width: 968px ===== */
    /* From line 2370 */
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-cta-box {
        position: static;
    }
}

/* ===== BATCH 4: Rules from max-width: 1024px ===== */
/* From line 2167 - applies at larger breakpoint */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar-contact {
        position: static;
        order: -1;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
}

/* Desktop Small (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    /* Hero */
    .hero-modern h1 {
        font-size: clamp(3rem, 8vw, 4rem) !important;
    }
    
    /* Navigation */
    .main-nav .menu {
        gap: 1.8rem;
    }
}

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    /* Hero optimal */
    .hero-modern h1 {
        font-size: clamp(3.5rem, 9vw, 4.5rem) !important;
    }
    
    .hero-modern p {
        font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
    }
}

/* Utilities Responsive Universelles */
@media (max-width: 767px) {
    /* Force stacking des flex containers */
    .hero-modern > div > div[style*="display: flex"],
    div[style*="display: flex; gap"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Padding réduits */
    section {
        padding: 40px 15px !important;
    }
    
    /* Typography responsive */
    h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    }
    
    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    h3 {
        font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
    }
    
    p {
        font-size: clamp(0.95rem, 3vw, 1.05rem) !important;
    }
    
    /* Boutons tap-friendly (min 44px height) */
    .btn, button, a.btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Espacement sections */
    section + section {
        margin-top: 30px;
    }
}

/* Touch-friendly pour tous mobiles */
@media (hover: none) and (pointer: coarse) {
    /* Augmenter zones tactiles */
    a, button, .btn, input[type="checkbox"], input[type="radio"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Désactiver hover states sur mobile */
    *:hover {
        background-color: inherit !important;
    }
    
    /* Focus visible pour accessibilité */
    *:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
}

/* Print styles */
@media print {
    .main-header,
    .main-nav,
    .eval-btn,
    .contact-info,
    .footer,
    .cta-section,
    button {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: white;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
}