/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nouvelle palette de couleurs basée sur le logo */
    --primary-color: #1C3D73;      /* Bleu profond - confiance */
    --secondary-color: #F4C542;    /* Jaune doré - énergie positive */
    --accent-color: #A7B583;       /* Vert olive doux - apaisant */
    --neutral-bg: #FDF8F0;         /* Beige clair - fond de page doux */
    --text-color: #2E2E2E;         /* Gris anthracite */
    --white: #FFFFFF;
    --light-blue: #E8F2FF;         /* Bleu très clair pour sections */
    --light-yellow: #FFF8E1;       /* Jaune très clair pour témoignages */
    
    /* Typographies basées sur le logo */
    --font-heading: 'Montserrat', sans-serif;
    --font-subheading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--neutral-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.2rem;
    font-size: 18px;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.nav-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--secondary-color);
    padding: 2px;
}

.nav-logo-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.nav-logo-text span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Menu burger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu de navigation */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

.nav-social:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-social i,
.nav-social svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Overlay pour fermer le menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--neutral-bg);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(244, 197, 66, 0.15) 0%, 
        rgba(244, 197, 66, 0.05) 50%, 
        transparent 100%);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-photo {
    position: relative;
    width: 350px;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-photo:hover .hero-image {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(28, 61, 115, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hero-photo:hover .photo-overlay {
    transform: translateY(0);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.overlay-content i {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--secondary-color);
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-icon {
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--secondary-color);
    padding: 2px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.hero-baseline {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--font-subheading);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-family: var(--font-subheading);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta .btn i {
    width: 1.2rem;
    height: 1.2rem;
}

/* Hero Mobile - Visible uniquement sur mobile */
.hero-mobile {
    display: none;
    position: relative;
    background: var(--neutral-bg);
    padding: 100px 0 40px;
    min-height: auto;
}

.hero-mobile-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-mobile-shape {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.1;
}

.hero-mobile-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.hero-mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}


.hero-mobile-title h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.3rem 0;
    line-height: 1.2;
}

.hero-mobile-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0 0 0.2rem 0;
}

.hero-mobile-tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.hero-mobile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--white);
    margin: 0.5rem 0;
}

.hero-mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mobile-description {
    max-width: 300px;
    margin: 0 auto;
}

.hero-mobile-description p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

.hero-mobile-cta {
    width: 100%;
    max-width: 280px;
    margin: 0.5rem 0;
}

.btn-mobile {
    width: 100%;
    padding: 0.9rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-mobile i {
    width: 1.2rem;
    height: 1.2rem;
}

.hero-mobile-info {
    width: 100%;
    max-width: 300px;
    margin-top: 0.5rem;
}

.hero-mobile-contact {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(28, 61, 115, 0.1);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-color);
}

.mobile-contact-item:last-child {
    margin-bottom: 0;
}

.mobile-contact-item i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mobile-contact-item span {
    font-weight: 500;
}

.contact-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(74, 111, 165, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), #3a5a8a);
    color: var(--white);
    padding: 1.5rem 2rem;
    text-align: center;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item:hover {
    background-color: rgba(74, 111, 165, 0.02);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(74, 111, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
    width: 1.2rem;
    height: 1.2rem;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.4;
}

.card-footer {
    padding: 1.5rem 2rem;
    background: rgba(245, 230, 211, 0.3);
    text-align: center;
}

.card-footer .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.card-footer .social-link:hover {
    color: var(--secondary-color);
}

.card-footer .social-link i,
.card-footer .social-link svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #3a5a8a;
    border-color: #3a5a8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-alt {
    background-color: var(--light-blue);
}

/* Portrait Section */
.portrait-section {
    background: var(--white);
}

.portrait-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.portrait-image {
    text-align: center;
}

.portrait-container {
    position: relative;
    display: inline-block;
}

.portrait-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.portrait-photo:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-blue), var(--light-yellow));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-medium);
}

.image-placeholder i {
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.portrait-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.certifications-badge {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
}

.certifications-badge h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.certifications-badge ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certifications-badge li {
    padding: 0.5rem 0;
    color: var(--primary-color);
    font-weight: 500;
}

.certifications-badge strong {
    color: var(--primary-color);
}

/* Témoignages Section */
.testimonials-section {
    background: var(--light-yellow);
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-quote {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-light);
    border-left: 6px solid var(--secondary-color);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-family: var(--font-heading);
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

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

.point-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.point-item i {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.point-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.point-item p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

/* APSOS Section */
.apsos-section {
    background: var(--light-yellow);
}

.apsos-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.apsos-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apsos-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.apsos-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.apsos-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-note {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border-left: 6px solid var(--primary-color);
}

.faq-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-note p {
    color: var(--text-color);
    margin: 0;
    font-style: italic;
}

/* Galerie de photos d'Éric */
.eric-gallery {
    margin: 3rem 0;
    text-align: center;
}

.eric-gallery h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

/* Approche Section */
.approche-content {
    max-width: 900px;
    margin: 0 auto;
}

.approches-list {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.approche-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approche-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.approche-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approche-goal {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 2rem;
    font-style: italic;
}

.approche-goal h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-style: normal;
}

/* Motifs Section */
.motifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.motif-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.motif-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.motif-item i {
    color: var(--primary-color);
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.motif-item h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.motifs-note {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 3rem;
    text-align: center;
    font-style: italic;
}

/* Parcours Section */
.parcours-content {
    max-width: 900px;
    margin: 0 auto;
}

.parcours-text {
    margin-bottom: 3rem;
}

.certifications {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.cert-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.cert-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-content {
    margin-top: 3rem;
}

/* Calendly Section */
.calendly-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    margin-bottom: 3rem;
    text-align: center;
}

.calendly-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.calendly-header p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.calendly-button-container {
    margin-bottom: 2rem;
}

.btn-calendly {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(28, 61, 115, 0.3);
}

.btn-calendly:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 61, 115, 0.4);
}

.calendly-note {
    margin-top: 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.calendly-widget-container {
    margin-top: 2rem;
    min-height: 600px;
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.calendly-widget {
    width: 100%;
    height: 600px;
    border: none;
}

.calendly-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--light-blue);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
}

.calendly-placeholder i {
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.calendly-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.calendly-placeholder p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.calendly-placeholder .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}


/* Google Maps Section */
.maps-section {
    background: var(--light-blue);
    padding: var(--section-padding);
}

.maps-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.maps-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.maps-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

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

.maps-address,
.maps-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.maps-address i,
.maps-contact i {
    color: var(--primary-color);
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.maps-address strong,
.maps-contact strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.maps-address p,
.maps-contact p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
    font-size: 0.9rem;
}

.maps-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.maps-actions .btn {
    flex: 1;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.maps-transport {
    background: var(--white);
    padding: 1.2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.maps-transport h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.transport-item i {
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.transport-item:last-child {
    margin-bottom: 0;
}

.maps-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.google-map {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-info .contact-card {
    margin-bottom: 1.2rem;
    padding: 1.2rem;
}

.contact-item {
    margin-bottom: 0.8rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i,
.contact-item svg {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.contact-item p {
    font-size: 0.85rem;
    line-height: 1.25;
}


.contact-info .contact-item div {
    flex: 1;
}

.contact-info .contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info .contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info .contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.apsos-info {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
}

.apsos-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.apsos-info p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.2rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--secondary-color);
    padding: 2px;
}

.footer-logo-text h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-logo-text p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.footer-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
}

.social-link i,
.social-link svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: var(--shadow-medium);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(28, 61, 115, 0.1);
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        background-color: rgba(28, 61, 115, 0.05);
        padding-left: 1rem;
    }
    
    .nav-social {
        margin-left: 0;
        margin-top: 1rem;
        align-self: stretch;
        justify-content: center;
        padding: 1rem;
        border-radius: var(--border-radius-lg);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-overlay {
        display: block;
    }
    
    /* Masquer le hero desktop sur mobile */
    .hero {
        display: none;
    }
    
    /* Afficher le hero mobile sur mobile */
    .hero-mobile {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-quote {
        margin: 2rem 0;
        padding: 1.2rem 1.5rem;
    }
    
    .hero-quote p {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Calendly Responsive */
    .calendly-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .calendly-header h3 {
        font-size: 1.5rem;
    }
    
    .calendly-header p {
        font-size: 1rem;
    }
    
    .btn-calendly {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .calendly-widget-container {
        min-height: 500px;
    }
    
    .calendly-widget {
        height: 500px;
    }
    
    .calendly-placeholder {
        padding: 2rem 1.5rem;
    }
    
    .calendly-placeholder i {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
    
    .calendly-placeholder h4 {
        font-size: 1.3rem;
    }
    
    .calendly-placeholder p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .calendly-placeholder .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Google Maps Responsive */
    .maps-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .maps-info {
        order: 2;
    }
    
    .maps-container {
        order: 1;
    }
    
    .google-map {
        height: 300px;
    }
    
    .maps-actions {
        flex-direction: column;
    }
    
    .maps-actions .btn {
        min-width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Contact cards responsive */
    .contact-info .contact-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        margin-bottom: 0.6rem;
    }
    
    .contact-item i,
    .contact-item svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-item strong {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Transport card responsive */
    .maps-transport {
        padding: 1rem;
    }
    
    .maps-transport h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .transport-item {
        margin-bottom: 0.6rem;
        gap: 0.6rem;
        font-size: 0.85rem;
    }
    
    .transport-item i {
        width: 14px;
        height: 14px;
    }
    
    /* Maps address/contact responsive */
    .maps-address,
    .maps-contact {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .maps-address i,
    .maps-contact i {
        width: 14px;
        height: 14px;
    }
    
    .maps-address strong,
    .maps-contact strong {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    
    .maps-address p,
    .maps-contact p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .motifs-grid {
        grid-template-columns: 1fr;
    }
    
    .approches-list {
        grid-template-columns: 1fr;
    }
    
    .portrait-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .portrait-photo {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .testimonial-points {
        grid-template-columns: 1fr;
    }
    
    .apsos-details {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quote {
        padding: 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .nav-logo-image {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo-image {
        width: 50px;
        height: 50px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* Tablets and medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Masquer le hero desktop sur tablettes */
    .hero {
        display: none;
    }
    
    /* Afficher le hero mobile sur tablettes */
    .hero-mobile {
        display: block;
    }
    
    /* Optimisations pour le hero mobile sur tablettes */
    .hero-mobile {
        padding: 120px 0 60px;
    }
    
    .hero-mobile-title h1 {
        font-size: 2.4rem;
    }
    
    .hero-mobile-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-mobile-tagline {
        font-size: 1rem;
    }
    
    .hero-mobile-photo {
        width: 220px;
        height: 220px;
    }
    
    .hero-mobile-description {
        max-width: 380px;
    }
    
    .hero-mobile-description p {
        font-size: 1rem;
    }
    
    .hero-mobile-cta {
        max-width: 320px;
    }
    
    .btn-mobile {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
    
    .hero-mobile-info {
        max-width: 380px;
    }
    
    .hero-mobile-contact {
        padding: 1.5rem;
    }
    
    .mobile-contact-item {
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .mobile-contact-item i {
        width: 16px;
        height: 16px;
    }
    
    .maps-content {
        gap: 2.5rem;
    }
    
    .maps-info {
        gap: 1.8rem;
    }
    
    .contact-info .contact-card {
        padding: 1.3rem;
    }
    
    .maps-transport {
        padding: 1.3rem;
    }
    
    .google-map {
        height: 350px;
    }
}

/* Grands écrans (≥ 1025px) - Desktop uniquement */
@media (min-width: 1025px) {
    /* Afficher le hero desktop sur grands écrans */
    .hero {
        display: block;
    }
    
    /* Masquer le hero mobile sur grands écrans */
    .hero-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-quote {
        margin: 1.5rem 0;
        padding: 1rem 1.2rem;
    }
    
    .hero-quote p {
        font-size: 0.95rem;
    }
    
    .portrait-photo {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .testimonial-quote {
        padding: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .nav-logo-image {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo-image {
        width: 45px;
        height: 45px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    /* Contact cards extra small screens */
    .contact-info .contact-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-item {
        margin-bottom: 0.5rem;
    }
    
    .contact-item i,
    .contact-item svg {
        width: 12px;
        height: 12px;
    }
    
    .contact-item strong {
        font-size: 0.75rem;
        margin-bottom: 0.05rem;
    }
    
    .contact-item p {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    /* Transport card extra small screens */
    .maps-transport {
        padding: 0.8rem;
    }
    
    .maps-transport h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .transport-item {
        margin-bottom: 0.5rem;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .transport-item i {
        width: 12px;
        height: 12px;
    }
    
    /* Maps address/contact extra small screens */
    .maps-address,
    .maps-contact {
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .maps-address i,
    .maps-contact i {
        width: 12px;
        height: 12px;
    }
    
    .maps-address strong,
    .maps-contact strong {
        font-size: 0.75rem;
        margin-bottom: 0.05rem;
    }
    
    .maps-address p,
    .maps-contact p {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    /* Maps actions extra small screens */
    .maps-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .google-map {
        height: 250px;
    }
    
    /* Hero mobile responsive pour très petits écrans */
    .hero-mobile {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-mobile-title h1 {
        font-size: 1.8rem;
    }
    
    .hero-mobile-subtitle {
        font-size: 1rem;
    }
    
    .hero-mobile-tagline {
        font-size: 0.9rem;
    }
    
    .hero-mobile-photo {
        width: 150px;
        height: 150px;
    }
    
    .hero-mobile-description {
        max-width: 280px;
    }
    
    .hero-mobile-description p {
        font-size: 0.9rem;
    }
    
    .btn-mobile {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-mobile-contact {
        padding: 1.2rem;
    }
    
    .mobile-contact-item {
        font-size: 0.85rem;
        gap: 0.6rem;
    }
    
    .mobile-contact-item i {
        width: 14px;
        height: 14px;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--white);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

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

/* Form RGPD */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--secondary-color);
}

/* Error Page */
.error-page {
    padding: 120px 0 80px;
    background: var(--neutral-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.error-icon {
    margin-bottom: 2rem;
}

.error-icon i {
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
}

.error-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.error-suggestion {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.error-links {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.error-links li {
    margin-bottom: 0.8rem;
}

.error-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-links a:hover {
    color: var(--secondary-color);
}

.error-links a::before {
    content: '→';
    color: var(--secondary-color);
    font-weight: bold;
}

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

.error-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--neutral-bg);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.legal-footer p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Footer Legal Links */
.legal-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--white);
}

/* Print styles */
@media print {
    .navbar,
    .hero-cta,
    .contact-form,
    .footer,
    .cookie-banner {
        display: none;
    }
    
    .hero {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
