/* Reset et Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d8659;
    --dark-green: #1f5d3f;
    --light-green: #4caf7a;
    --lighter-green: #e8f5e9;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --gray-bg: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Nom du site : <p>, pas <h1> — un seul H1 par page (contenu principal) */
.logo .site-name {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
    margin: 0;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    flex-shrink: 1;
}

.nav-menu li {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.85rem;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--lighter-green);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    padding-left: 1.8rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 600px;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s 0.2s both;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--lighter-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Formations Section */
.formations {
    background: var(--gray-bg);
}

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

.formation-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

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

.formation-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    background: var(--lighter-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.formation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.formation-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.formation-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.formation-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s;
}

.formation-card:hover .formation-link {
    transform: translateX(5px);
}

/* Labels Section */
.labels {
    background: var(--white);
}

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

.label-card {
    background: var(--lighter-green);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-green);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.label-card-link {
    cursor: pointer;
}

.label-card-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-green);
}

.label-badge {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.label-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Atouts Section */
.atouts {
    background: var(--gray-bg);
}

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

.atout-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.atout-card-link {
    cursor: pointer;
}

.atout-card-link:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--primary-green);
}

.atout-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.atout-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Pourquoi Section */
.pourquoi {
    background: var(--white);
}

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

.pourquoi-card {
    background: linear-gradient(135deg, var(--lighter-green) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.pourquoi-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.pourquoi-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Contact Section */
.contact {
    background: var(--gray-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-details-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon-inline {
    font-size: 2rem;
    min-width: 50px;
}

.contact-detail-content-inline h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail-content-inline p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-detail-content-inline a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-content-inline a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form-page {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group-inline {
    display: flex;
    flex-direction: column;
}

.form-group-inline label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group-inline input,
.form-group-inline select,
.form-group-inline textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}

.form-group-inline input:focus,
.form-group-inline select:focus,
.form-group-inline textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.form-group-inline select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d8659' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group-inline textarea {
    resize: vertical;
    min-height: 100px;
}

/* Mentions légales page */
.mentions-legales-section {
    padding: 2rem 0 4rem;
}

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

.mentions-legales-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--lighter-green);
}

.mentions-legales-content h2 {
    font-size: 1.35rem;
    color: var(--dark-green);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--lighter-green);
}

.mentions-legales-content h2:first-of-type {
    margin-top: 0;
}

.mentions-legales-content h3 {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.mentions-legales-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mentions-legales-content a {
    color: var(--primary-green);
    text-decoration: underline;
}

.mentions-legales-content a:hover {
    color: var(--dark-green);
}

.mentions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.mentions-list li {
    padding: 0.35rem 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.mentions-back {
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.footer-link {
    color: var(--white) !important;
    text-decoration: underline !important;
    opacity: 0.95;
}

.footer-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .mentions-legales-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mentions-legales-content {
        padding: 1.2rem;
    }
    .mentions-legales-content h2 {
        font-size: 1.2rem;
    }
}

/* Documents page */
.documents-section {
    padding: 3rem 0 4rem;
}

.documents-category {
    margin-bottom: 4rem;
}

.documents-category:last-of-type {
    margin-bottom: 0;
}

.documents-category-title {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-green);
    display: inline-block;
}

.documents-category-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 60ch;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.document-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--lighter-green);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.document-card:hover {
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
    transform: translateY(-2px);
}

.document-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.document-card-content h3 {
    font-size: 1.15rem;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.document-card-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.btn-download {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.btn-download::before {
    content: "↓";
    font-weight: 700;
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
    .documents-category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .document-card-content {
        padding: 1.2rem;
    }
    .document-card-content h3 {
        font-size: 1.05rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: transform 0.2s, opacity 0.2s;
}

.footer-logos a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.footer-logos a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-logo-star {
    font-size: 2rem;
    line-height: 1;
}

.footer-reviews {
    margin: 1.5rem 0;
    min-height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 52px;
        flex-direction: column;
        background: linear-gradient(180deg, var(--white) 0%, #f8faf9 100%);
        width: 100%;
        max-height: calc(100vh - 52px);
        overflow-y: auto;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 1.5rem 1rem 2rem;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 0.25rem;
    }

    .nav-menu > li > a {
        display: block;
        padding: 1rem 1.25rem;
        text-align: center;
        font-weight: 500;
        font-size: 1.05rem;
        color: var(--dark-green);
        border-radius: 12px;
        background: var(--white);
        border: 1px solid var(--lighter-green);
        transition: background 0.2s, color 0.2s;
    }

    .nav-menu > li > a:hover {
        background: var(--lighter-green);
        color: var(--primary-green);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
        font-weight: 500;
        font-size: 1.05rem;
        color: var(--dark-green);
        background: var(--white);
        border: 1px solid var(--lighter-green);
        border-radius: 12px;
    }

    .dropdown-toggle:hover {
        background: var(--lighter-green);
        color: var(--primary-green);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(45, 134, 89, 0.08);
        margin: 0.5rem 0 0;
        padding: 0.5rem 0;
        border-radius: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: 1px solid var(--lighter-green);
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.85rem 1rem;
        text-align: center;
        font-size: 0.98rem;
        color: var(--text-dark);
        border-radius: 8px;
        margin: 0 0.5rem 0.25rem;
        background: var(--white);
    }

    .dropdown-menu a:hover {
        background: var(--lighter-green);
        color: var(--primary-green);
    }

    .logo h1 {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 20px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        min-height: 250px;
        max-height: 400px;
    }

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

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

    section {
        padding: 50px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row-inline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group-inline {
        margin-bottom: 1rem;
    }

    .formations-grid,
    .labels-grid,
    .atouts-grid,
    .pourquoi-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .formation-card,
    .label-card,
    .atout-card,
    .pourquoi-card {
        padding: 1.5rem;
    }

    .contact-details-inline {
        gap: 1.2rem;
    }

    .contact-detail-item-inline {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .contact-icon-inline {
        margin: 0 auto;
    }

    .contact-detail-content-inline {
        text-align: center;
    }

    .formules-section,
    .methode-section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

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

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

    .formation-icon {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }

    .formation-card h3 {
        font-size: 1.3rem;
    }

    .label-badge {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1rem;
    }

    .atout-icon {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1rem !important;
    }

    .pourquoi-card > div {
        width: 150px !important;
        height: 150px !important;
        margin-bottom: 1rem !important;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 0.9rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-container {
        padding: 20px 15px;
    }

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

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

    .hero-image {
        min-height: 200px;
        max-height: 300px;
    }

    section {
        padding: 40px 0;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 10px;
    }

    .formation-card,
    .label-card,
    .atout-card,
    .pourquoi-card,
    .formule-card {
        padding: 1.2rem;
    }

    .formation-icon {
        width: 120px;
        height: 120px;
    }

    .label-badge {
        width: 80px !important;
        height: 80px !important;
    }

    .atout-icon {
        width: 80px !important;
        height: 80px !important;
    }

    .pourquoi-card > div {
        width: 120px !important;
        height: 120px !important;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .contact-details-inline {
        gap: 1rem;
    }

    .contact-detail-item-inline {
        padding: 1rem;
    }

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

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

    .formules-section,
    .methode-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 40px 0;
    }
}

/* Responsive pour sections avec styles inline */
@media (max-width: 768px) {
    /* Grilles avec display: grid inline - cibler les grilles spécifiques */
    section div[style*="grid-template-columns: repeat(auto-fit, minmax(300px"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    section div[style*="grid-template-columns: repeat(auto-fit, minmax(400px"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Images dans les sections */
    div[style*="max-width: 800px"],
    div[style*="max-width: 900px"] {
        margin: 1.5rem auto 0 !important;
        padding: 0 15px;
    }

    /* Padding responsive */
    div[style*="padding: 2.5rem"] {
        padding: 1.5rem !important;
    }

    div[style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }

    /* Images côte à côte - flex */
    div[style*="display: flex"][style*="gap: 3rem"],
    div[style*="display: flex"][style*="gap: 1rem"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    /* Images dans hero */
    .hero-image-wrapper img[style*="max-height: 600px"] {
        max-height: 300px !important;
    }

    /* Sections avec max-width */
    div[style*="max-width: 500px"],
    div[style*="max-width: 600px"] {
        max-width: 100% !important;
        margin: 1rem auto 0 !important;
        padding: 0 15px;
    }

    /* Tarifs code flex */
    div[style*="display: flex"][style*="justify-content: center"][style*="gap: 3rem"] {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    /* Images dans sections */
    img[style*="max-width: 250px"] {
        max-width: 200px !important;
    }
}

@media (max-width: 480px) {
    div[style*="padding: 2.5rem"] {
        padding: 1rem !important;
    }

    div[style*="padding: 2rem"] {
        padding: 1rem !important;
    }

    div[style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }

    /* Tailles de police responsive */
    h3[style*="font-size: 1.8rem"],
    h3[style*="font-size: 1.5rem"] {
        font-size: 1.3rem !important;
    }

    p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }

    p[style*="font-size: 1.5rem"] {
        font-size: 1.2rem !important;
    }

    /* Images */
    div[style*="height: 400px"] {
        height: 200px !important;
    }

    div[style*="width: 200px"] {
        width: 120px !important;
    }

    div[style*="width: 150px"] {
        width: 100px !important;
    }

    img[style*="max-width: 250px"] {
        max-width: 150px !important;
    }

    /* Marges */
    div[style*="margin-top: 3rem"] {
        margin-top: 2rem !important;
    }

    div[style*="margin-top: 2rem"] {
        margin-top: 1.5rem !important;
    }
}

/* Styles pour page Permis Voiture */
.formules-section {
    background: var(--white);
    padding: 80px 0;
}

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

.formule-card {
    background: var(--white);
    border: 2px solid var(--lighter-green);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.formule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.formule-card-offer {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--lighter-green) 0%, var(--white) 100%);
}

.formule-card-offer .formule-badge {
    background: var(--dark-green);
}

.formule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--lighter-green);
}

.formule-header h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 0;
}

.formule-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.formule-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.formule-features {
    list-style: none;
    margin-bottom: 2rem;
}

.formule-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.formule-price {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--lighter-green);
}

.formule-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.formations-complementaires {
    margin-top: 4rem;
}

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

.complementaire-card {
    background: var(--lighter-green);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--light-green);
    transition: all 0.3s;
}

.complementaire-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.complementaire-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.complementaire-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.price-small {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.btn-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-link:hover {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

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

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Styles pour page Tarifs */
.tarifs-section {
    background: var(--white);
    padding: 80px 0;
}

.detail-section {
    padding: 80px 0;
    background: var(--white);
}

.tarifs-table-container,
.detail-table-container {
    margin-top: 3rem;
    overflow-x: auto;
}

.tarifs-table,
.detail-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

.tarifs-table thead,
.detail-table thead {
    background: var(--primary-green);
    color: var(--white);
}

.tarifs-table th,
.detail-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.tarifs-table td,
.detail-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--lighter-green);
    color: var(--text-dark);
}

.tarifs-table tbody tr:hover,
.detail-table tbody tr:hover {
    background: var(--lighter-green);
    transition: background 0.3s;
}

.price-cell {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.total-row {
    background: var(--lighter-green) !important;
    font-size: 1.2rem;
}

.total-row td {
    padding: 1.5rem;
    border-bottom: none;
}

.info-box {
    background: var(--lighter-green);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--light-green);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-box p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.info-box strong {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Responsive pour tables - Transformation en cartes */
@media (max-width: 768px) {
    .formules-grid,
    .complementaires-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .formule-card {
        padding: 1.5rem;
    }

    .formule-header h3 {
        font-size: 1.2rem;
    }

    .formule-description {
        font-size: 0.95rem;
    }

    .formule-features {
        font-size: 0.9rem;
    }

    .tarifs-table-container,
    .detail-table-container {
        margin: 1.5rem 0 0;
        padding: 0;
        overflow: visible;
    }

    /* Transformer les tableaux en cartes sur mobile */
    .tarifs-table,
    .detail-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        display: block;
    }

    .tarifs-table thead,
    .detail-table thead {
        display: none;
    }

    .tarifs-table tbody,
    .detail-table tbody {
        display: block;
        width: 100%;
    }

    .tarifs-table tbody tr,
    .detail-table tbody tr {
        display: block;
        background: var(--white);
        border: 2px solid var(--lighter-green);
        border-radius: 15px;
        margin-bottom: 1rem;
        padding: 1.2rem;
        box-shadow: var(--shadow);
        width: 100%;
        box-sizing: border-box;
    }

    .tarifs-table tbody tr:hover,
    .detail-table tbody tr:hover {
        background: var(--white);
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
        transition: all 0.3s;
    }

    .tarifs-table tbody tr.total-row,
    .detail-table tbody tr.total-row {
        background: var(--lighter-green);
        border-color: var(--primary-green);
        font-weight: 700;
    }

    .tarifs-table tbody td,
    .detail-table tbody td {
        display: block;
        padding: 0.6rem 0;
        border: none;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }

    .tarifs-table tbody td:not(:last-child),
    .detail-table tbody td:not(:last-child) {
        border-bottom: 1px solid var(--lighter-green);
        padding-bottom: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .tarifs-table tbody td:before,
    .detail-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-green);
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .tarifs-table tbody td:first-child:before {
        content: "Formation";
    }

    .tarifs-table tbody td:nth-child(2):before {
        content: "Prix TTC";
    }

    .tarifs-table tbody td:nth-child(3):before {
        content: "Remarques";
    }

    .detail-table tbody td:first-child:before {
        content: "Prestation";
    }

    .detail-table tbody td:nth-child(2):before {
        content: "Détail";
    }

    .detail-table tbody td:nth-child(3):before {
        content: "Prix";
    }

    .price-cell {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-top: 0.3rem;
    }

    .tarifs-table tbody td strong,
    .detail-table tbody td strong {
        font-size: 1rem;
        color: var(--text-dark);
        display: block;
    }
}

@media (max-width: 480px) {
    .formule-card {
        padding: 1rem;
    }

    .formule-header h3 {
        font-size: 1.1rem;
    }

    .tarifs-table tbody tr,
    .detail-table tbody tr {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }

    .tarifs-table tbody td,
    .detail-table tbody td {
        font-size: 0.9rem;
    }

    .price-cell {
        font-size: 1.1rem;
    }
}

/* Styles pour page Contact */
.contact-page-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-info-section h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.contact-detail-content h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-detail-content a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-content a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-section h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d8659' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive pour page Contact */
@media (max-width: 968px) {
    .contact-page-content {
        grid-template-columns: 1fr;
    }

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

/* Styles pour section Méthode d'Apprentissage */
.methode-section {
    padding: 80px 0;
}

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

.methode-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.methode-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--primary-green);
}

.methode-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.methode-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Responsive pour section Méthode */
@media (max-width: 768px) {
    .methode-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .methode-card {
        padding: 1.5rem;
    }

    .methode-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .methode-card h3 {
        font-size: 1.2rem;
    }

    .methode-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .methode-card {
        padding: 1.2rem;
    }

    .methode-icon {
        font-size: 2.5rem;
    }
}

/* Styles pour section Pourquoi Scooter */
.pourquoi-scooter-section {
    padding: 80px 0;
}

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

.pourquoi-scooter-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.pourquoi-scooter-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--primary-green);
}

.pourquoi-scooter-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.pourquoi-scooter-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pourquoi-scooter-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Styles pour section Approche Pédagogique */
.approche-section {
    padding: 80px 0;
    background: var(--white);
}

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

.approche-card {
    background: linear-gradient(135deg, var(--lighter-green) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.approche-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.approche-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Responsive pour sections scooter */
@media (max-width: 768px) {
    .pourquoi-scooter-grid,
    .approche-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pourquoi-scooter-card,
    .approche-card {
        padding: 1.5rem;
    }

    .pourquoi-scooter-section,
    .examen-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .pourquoi-scooter-card,
    .approche-card {
        padding: 1.2rem;
    }
}

/* Styles pour section Examen */
.examen-section {
    padding: 80px 0;
    background: var(--white);
}

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

.examen-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid var(--lighter-green);
}

.examen-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.examen-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.examen-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Styles pour section Pourquoi Code */
.pourquoi-code-section {
    padding: 80px 0;
}

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

.pourquoi-code-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.pourquoi-code-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--primary-green);
}

.pourquoi-code-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.pourquoi-code-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pourquoi-code-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive pour sections code */
@media (max-width: 768px) {
    .examen-grid,
    .pourquoi-code-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .examen-card,
    .pourquoi-code-card {
        padding: 1.5rem;
    }

    .examen-icon,
    .pourquoi-code-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .examen-card,
    .pourquoi-code-card {
        padding: 1.2rem;
    }
}

/* Styles pour section Tarifs Moto */
.tarifs-moto-section {
    padding: 80px 0;
    background: var(--white);
}

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

.tarif-moto-card {
    background: var(--lighter-green);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--light-green);
    text-align: center;
    transition: all 0.3s;
}

.tarif-moto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-green);
}

.tarif-moto-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tarif-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.tarif-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 2px solid var(--light-green);
    border-bottom: 2px solid var(--light-green);
}

/* Responsive pour tarifs moto */
@media (max-width: 768px) {
    .tarifs-moto-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tarif-moto-card {
        padding: 1.5rem;
    }

    .tarifs-moto-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .tarif-moto-card {
        padding: 1.2rem;
    }
}

/* Styles pour détails tarifs inline */
.detail-section-inline {
    margin-bottom: 3rem;
}

.detail-title {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.detail-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Bannière Offre */
.offer-banner {
    display: block;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 1rem 0;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.offer-banner:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
}

.offer-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.offer-banner-badge {
    background: var(--white);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.offer-banner-text {
    font-size: 1rem;
    font-weight: 600;
}

.offer-banner-cta {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .offer-banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .offer-banner-text {
        font-size: 0.95rem;
    }
}

/* Page Offres */
.offer-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.offer-conditions {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.offer-cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--lighter-green);
    border-radius: 15px;
    border: 2px solid var(--primary-green);
    text-align: center;
}

.offer-cta-box h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.offer-cta-box p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Bandeau Permis A */
.formule-bandeau {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 15px 15px 0 0;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
}

.formule-card-permis-a {
    overflow: hidden;
}

@media (max-width: 768px) {
    .formule-bandeau {
        margin: -1.5rem -1.5rem 1rem -1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .formule-bandeau {
        margin: -1.2rem -1.2rem 1rem -1.2rem;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Bouton avis Google */
.btn-avis-google {
    display: inline-block;
    background: var(--white);
    color: var(--dark-green);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-avis-google:hover {
    background: var(--lighter-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Bloc texte local SEO (page d'accueil) */
.seo-local-block {
    padding: 2.5rem 0;
    background: var(--white);
    border-bottom: 1px solid rgba(45, 134, 89, 0.12);
}

.seo-local-block .section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.seo-local-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1.02rem;
}

.seo-local-text a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-local-text a:hover {
    color: var(--dark-green);
}

/* --- Blog (SEO / pages articles) --- */
.blog-page .blog-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 2.5rem 0 3rem;
}

.blog-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.blog-breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

.blog-page .blog-hero .blog-breadcrumb a {
    color: var(--white);
}

.blog-page-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-page-intro {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.65;
    opacity: 0.98;
}

.blog-list-section {
    padding: 3rem 0 4rem;
    background: var(--gray-bg);
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-card-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--primary-green);
}

.blog-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.blog-card-link {
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-article {
    padding: 2rem 0 1rem;
}

.blog-article-header {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: left;
}

.blog-article-header h1 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    color: var(--dark-green);
    margin: 0.5rem 0 1rem;
    line-height: 1.25;
}

.blog-article-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.65;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.article-body h2 {
    font-size: 1.35rem;
    color: var(--dark-green);
    margin: 2rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-body a {
    color: var(--primary-green);
    font-weight: 600;
}

.article-body a:hover {
    text-decoration: underline;
}

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