/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header et logo */
header {
    background: white;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 2.5em;
    color: #921331;
    font-style: italic;
    font-weight: normal;
    margin: 0;
}

.taglines {
    text-align: right;
}

.tagline-main {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.tagline-sub {
    font-size: 1.1em;
    color: #666;
}

/* Carrousel */
.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
}

.quote-text {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.quote-author {
    font-style: italic;
    text-align: right;
    font-size: 0.9em;
    color: #ccc;
}

/* Indicateurs du carrousel */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: #921331;
}

.indicator:hover {
    background: rgba(255, 102, 0, 0.8);
}

/* Navigation principale */
.main-nav {
    background: linear-gradient(90deg, rgba(146, 19, 49, 0.3) 0%, #333 50%, rgba(146, 19, 49, 0.3) 100%);
    padding: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    border-right: 1px solid #555;
}

.main-nav li:last-child {
    border-right: none;
}

.main-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #921331;
    color: white;
}

/* Contenu principal */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.intro-section {
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    line-height: 1.6;
}

.intro-text strong {
    color: #921331;
    font-weight: bold;
}

/* Liste des questions */
.questions-list {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.question-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.question-item:hover {
    background: #fff5f0;
}

.checkmark {
    color: #921331;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.question-item span:last-child {
    line-height: 1.5;
    color: #333;
}

/* Section explication */
.explanation-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 2px solid #921331;
}

.explanation-intro {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.explanation-intro strong {
    color: #921331;
}

.explanation-text {
    font-size: 1em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.explanation-text strong {
    color: #921331;
    font-weight: bold;
}

.session-info {
    background: #fff5f0;
    padding: 15px;
    border-left: 4px solid #921331;
    margin: 25px 0;
    border-radius: 5px;
}

.session-info p {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}

.contact-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.contact-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.phone-number {
    color: #921331;
    font-weight: bold;
    font-size: 1.2em;
}

.closing-text {
    font-style: italic;
    color: #921331;
    font-weight: 500;
    margin: 0;
}

/* Section Témoignages */
.testimonials-section {
    background: #f9f9f9;
    padding: 40px 0;
    margin-top: 40px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.testimonial-column {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-title {
    color: #921331;
    font-size: 1.4em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: normal;
}

.testimonial-item {
    line-height: 1.6;
}

.testimonial-item p {
    margin-bottom: 15px;
    color: #333;
    text-align: justify;
}

.testimonial-author {
    font-weight: bold;
    color: #921331;
    text-align: right;
    font-style: italic;
    margin-top: 20px !important;
}

/* Section Articles */
.articles-section {
    padding: 40px 0;
    background: white;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.article-card {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 50%;
    height: 300px;
    object-fit: cover; /* L'image remplit l'espace en gardant ses proportions */
}

.article-content {
    padding: 25px;
}

.article-title {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.article-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.article-link {
    color: #921331;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #e55a00;
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-title {
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: white;
}

.footer-address {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-copyright {
    font-size: 0.9em;
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    
    .taglines {
        text-align: center;
        margin-top: 10px;
    }
    
    .logo {
        font-size: 2em;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .quote-overlay {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        border-right: none;
        border-bottom: 1px solid #555;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        text-align: center;
        padding: 12px 15px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .articles-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-column,
    .article-content {
        padding: 20px;
    }
    
    .question-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .checkmark {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8em;
    }
    
    .tagline-main,
    .tagline-sub {
        font-size: 1em;
    }
    
    .carousel-container {
        height: 250px;
    }
    
    .quote-text {
        font-size: 1em;
    }
    
    .intro-text {
        font-size: 1em;
    }
}
.back-button-card {
    background: white;
    color: #921331;
    padding: 12px 20px;
    border: 2px solid #921331;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-button-card:hover {
    background: #921331;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.back-button-card::before {
    content: "←";
    font-size: 1.1em;
    font-weight: bold;
}
.lesst-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 40px;
            min-height: 80vh;
        }

        .lesst-header {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: 30px;
        }

        .lesst-title {
            color: #921331;
            font-size: 2.2em;
            margin-bottom: 10px;
            font-weight: normal;
        }

        .lesst-subtitle {
            color: #333;
            font-size: 1em;
            font-style: italic;
        }

        /* Menu de navigation */
        .lesst-menu {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }

        .lesst-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .lesst-menu li {
            margin-bottom: 8px;
        }

        .lesst-menu a {
            display: block;
            color: #333;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 0.95em;
            line-height: 1.4;
            position: relative;
            padding-left: 25px;
        }

        .lesst-menu a::before {
            content: "•";
            color: #921331;
            font-weight: bold;
            position: absolute;
            left: 10px;
            top: 12px;
        }

        .lesst-menu a:hover {
            background: #fff5f0;
            color: #921331;
            transform: translateX(5px);
        }

        .lesst-menu a.active {
            background: #921331;
            color: white;
        }

        .lesst-menu a.active::before {
            color: white;
        }

        /* Zone de contenu */
        .lesst-content {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            min-height: 400px;
        }

        .content-section {
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .content-section.active {
            display: block;
        }

        .content-section h3 {
            color: #921331;
            font-size: 1.4em;
            margin-bottom: 20px;
            border-bottom: 2px solid #921331;
            padding-bottom: 10px;
        }

        .content-section p {
            color: #333;
            line-height: 1.7;
            margin-bottom: 15px;
            text-align: justify;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Bouton retour */
        .back-button-card {
            background: white;
            color: #921331;
            padding: 12px 20px;
            border: 2px solid #921331;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .back-button-card:hover {
            background: #921331;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
        }

        .back-button-card::before {
            content: "←";
            font-size: 1.1em;
            font-weight: bold;
        }
        /* disclaimer */
        .disclaimer {
            background: white;
            color: #921331;
			width: 50%;
            padding: 12px 20px;
            border: 2px solid #921331;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .disclaimer:hover {
            background: #921331;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
        }

        .disclaimer::before {
            font-size: 1.1em;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .lesst-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 15px;
            }
            
            .lesst-menu {
                order: 2;
            }
            
            .lesst-content {
                order: 1;
                padding: 20px;
            }
            
            .lesst-title {
                font-size: 1.8em;
            }
        }
        /* Styles spécifiques pour la page témoignages */
        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            min-height: 70vh;
            position: relative;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonials-title {
            color: #921331;
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .testimonials-subtitle {
            color: #666;
            font-size: 1.1em;
            font-style: italic;
        }

        /* Zone de témoignage */
        .typewriter-container {
            background: #f9f9f9;
            border-radius: 15px;
            padding: 40px;
            min-height: 400px;
            position: relative;
            border-left: 5px solid #921331;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial-content {
            font-size: 1.1em;
            line-height: 1.8;
            color: #333;
            margin-bottom: 25px;
            text-align: justify;
            min-height: 300px;
        }

        .testimonial-author {
            font-weight: bold;
            color: #921331;
            font-size: 1.2em;
            text-align: right;
            font-style: italic;
            border-top: 1px solid #ddd;
            padding-top: 15px;
        }

        /* Curseur clignotant */
        .cursor {
            display: inline-block;
            width: 2px;
            height: 1.2em;
            background-color: #921331;
            animation: blink 1s infinite;
            margin-left: 2px;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Contrôles de navigation */
        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            gap: 20px;
        }

        .control-btn {
            background: #921331;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1em;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
        }

        .control-btn:hover {
            background: #e55a00;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
        }

        .control-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .play-pause-btn {
            background: #333;
            padding: 15px 25px;
            font-size: 1.1em;
        }

        .play-pause-btn:hover {
            background: #555;
        }

        /* Indicateurs de progression */
        .progress-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .progress-dot.active {
            background: #921331;
            transform: scale(1.3);
        }

        .progress-dot:hover {
            background: #ff9944;
        }

        /* Compteur */
        .testimonial-counter {
            position: absolute;
            top: -45px;
            right: 0px;
            background: #921331;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
        }

        /* Animation d'entrée */
        .typewriter-container.fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* États de chargement */
        .loading-text {
            color: #999;
            font-style: italic;
            text-align: center;
            font-size: 1.1em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonials-container {
                padding: 20px 15px;
                margin: 20px 10px;
            }
            
            .typewriter-container {
                padding: 25px 20px;
                min-height: 350px;
            }
            
            .testimonial-content {
                font-size: 1em;
                line-height: 1.6;
                min-height: 250px;
            }
            
            .testimonials-title {
                font-size: 2em;
            }
            
            .control-btn {
                padding: 10px 15px;
                font-size: 0.9em;
            }
            
            .testimonial-controls {
                flex-wrap: wrap;
                gap: 15px;
            }
        }
/* Menu déroulant - À ajouter dans styles.css */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 3px solid #921331;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-right: none;
    border-bottom: 1px solid #555;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.9em;
    white-space: nowrap;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: #921331;
    color: white;
}

/* Menu déroulant responsive */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: #444;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-menu a {
        padding: 10px 25px;
        font-size: 0.85em;
    }
}
        /* Styles spécifiques pour la page contact */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-title {
            color: #921331;
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .contact-subtitle {
            color: #666;
            font-size: 1.1em;
            font-style: italic;
        }

        /* Layout principal */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 40px;
        }

        /* Informations de contact */
        .contact-info {
            background: #f9f9f9;
            padding: 35px;
            border-radius: 10px;
            border-left: 5px solid #921331;
        }

        .contact-info h3 {
            color: #921331;
            font-size: 1.4em;
            margin-bottom: 25px;
            border-bottom: 2px solid #921331;
            padding-bottom: 10px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .info-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .info-icon {
            font-size: 1.5em;
            color: #921331;
            margin-right: 15px;
            margin-top: 5px;
            min-width: 30px;
        }

        .info-content h4 {
            color: #333;
            font-size: 1em;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .info-content p {
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        .phone-number {
            color: #921331;
            font-weight: bold;
            font-size: 1.1em;
        }

        /* Formulaire de contact */
        .contact-form {
            background: #f9f9f9;
            padding: 35px;
            border-radius: 10px;
            border-left: 5px solid #921331;
        }

        .contact-form h3 {
            color: #921331;
            font-size: 1.4em;
            margin-bottom: 25px;
            border-bottom: 2px solid #921331;
            padding-bottom: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #333;
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 0.95em;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #921331;
            box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .submit-btn {
            background: #921331;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #e55a00;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
        }

        /* Section carte */
        .map-section {
            margin-top: 50px;
            text-align: center;
        }

        .map-section h3 {
            color: #921331;
            font-size: 1.4em;
            margin-bottom: 20px;
        }

        .map-placeholder {
            background: #f0f0f0;
            border: 2px dashed #ccc;
            border-radius: 10px;
            padding: 60px 20px;
            color: #999;
            font-style: italic;
            margin-bottom: 20px;
        }

        /* Horaires d'ouverture */
        .hours-section {
            background: #fff5f0;
            padding: 25px;
            border-radius: 10px;
            margin-top: 30px;
            border: 1px solid #921331;
        }

        .hours-section h4 {
            color: #921331;
            font-size: 1.2em;
            margin-bottom: 15px;
            text-align: center;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            font-size: 0.95em;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 8px;
            background: white;
            border-radius: 5px;
        }

        .day {
            font-weight: bold;
            color: #333;
        }

        .time {
            color: #666;
        }

        /* Message de confirmation */
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid #c3e6cb;
            margin-bottom: 20px;
            display: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-container {
                padding: 20px 15px;
                margin: 20px 10px;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-info,
            .contact-form {
                padding: 25px 20px;
            }
            
            .contact-title {
                font-size: 2em;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
            
            .info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .info-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
        /* Styles spécifiques pour la page dossiers */
        .dossiers-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .dossiers-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .dossiers-title {
            color: #921331;
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .dossiers-subtitle {
            color: #666;
            font-size: 1.1em;
            font-style: italic;
            margin-bottom: 30px;
        }

        /* Grille des dossiers */
        .dossiers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .dossier-card {
            background: #f9f9f9;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 2px solid #ddd;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .dossier-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(146, 19, 49, 0.2);
            border-color: #921331;
        }

        .dossier-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(146, 19, 49, 0.1), transparent);
            transition: left 0.5s;
        }

        .dossier-card:hover::before {
            left: 100%;
        }

        /* Icônes SVG */
        .dossier-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            position: relative;
        }

        .dossier-icon svg {
            width: 100%;
            height: 100%;
            fill: #921331;
            transition: transform 0.3s ease;
        }

        .dossier-card:hover .dossier-icon svg {
            transform: scale(1.1);
        }

        .dossier-title {
            color: #333;
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 15px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dossier-description {
            color: #666;
            font-size: 0.95em;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .download-btn {
            background: #921331;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .download-btn:hover {
            background: #b8154a;
            transform: scale(1.05);
        }

        /* Note d'information */
        .info-note {
            background: #fff5f0;
            border: 1px solid #921331;
            border-radius: 10px;
            padding: 20px;
            margin: 40px 0;
            text-align: center;
        }

        .info-note h3 {
            color: #921331;
            margin-bottom: 10px;
        }

        .info-note p {
            color: #333;
            margin: 0;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .dossiers-container {
                padding: 20px 15px;
                margin: 20px 10px;
            }
            
            .dossiers-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .dossier-card {
                padding: 25px 20px;
            }
            
            .dossiers-title {
                font-size: 2em;
            }
            
            .dossier-icon {
                width: 60px;
                height: 60px;
            }
        }
        /* Styles spécifiques pour la page test tibétain */
        .test-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .test-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .test-title {
            color: #921331;
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .test-subtitle {
            color: #666;
            font-size: 1.1em;
            font-style: italic;
            margin-bottom: 30px;
        }

        /* Card principale du test */
        .test-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #fff5f0 100%);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            border: 2px solid #921331;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin: 40px 0;
        }

        .test-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(146, 19, 49, 0.1) 0%, transparent 70%);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }

        .test-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(146, 19, 49, 0.2);
            border-color: #b8154a;
        }

        .test-card:hover::before {
            transform: rotate(45deg) scale(1.1);
        }

        /* Grande icône du test */
        .test-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 2;
        }

        .test-icon svg {
            width: 100%;
            height: 100%;
            fill: #921331;
            transition: all 0.3s ease;
            filter: drop-shadow(0 5px 15px rgba(146, 19, 49, 0.3));
        }

        .test-card:hover .test-icon svg {
            transform: scale(1.1) rotate(5deg);
        }

        .test-main-title {
            color: #333;
            font-size: 1.8em;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .test-description {
            color: #666;
            font-size: 1.1em;
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: justify;
            position: relative;
            z-index: 2;
        }

        .download-btn {
            background: linear-gradient(135deg, #921331 0%, #b8154a 100%);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: box-shadow: 0 5px 20px rgba(146, 19, 49, 0.4);
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .download-btn:hover {
            background: linear-gradient(135deg, #b8154a 0%, #7a0f28 100%);
            transform: translateY(-3px);
            box-shadow: box-shadow: 0 8px 30px rgba(146, 19, 49, 0.6);
        }

        /* Section d'information */
        .info-section {
            background: #f9f9f9;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #921331;
        }

        .info-section h3 {
            color: #921331;
            font-size: 1.4em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-content {
            color: #333;
            line-height: 1.6;
        }

        .info-content p {
            margin-bottom: 15px;
        }

        .info-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .info-content li {
            margin-bottom: 8px;
            color: #555;
        }

        /* Highlight box */
        .highlight-box {
            background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
            border: 2px solid #921331;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
            position: relative;
        }

        .highlight-box::before {
            content: '💡';
            font-size: 2em;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 0 10px;
        }

        .highlight-box h4 {
            color: #921331;
            font-size: 1.2em;
            margin: 10px 0 15px 0;
        }

        .highlight-box p {
            color: #333;
            margin: 0;
            font-style: italic;
        }

        /* Animation d'entrée */
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .test-container {
                padding: 20px 15px;
                margin: 20px 10px;
            }
            
            .test-card {
                padding: 30px 25px;
            }
            
            .test-title {
                font-size: 2em;
            }
            
            .test-icon {
                width: 80px;
                height: 80px;
            }
            
            .test-main-title {
                font-size: 1.4em;
            }
            
            .test-description {
                font-size: 1em;
                text-align: center;
            }
            
            .download-btn {
                padding: 12px 25px;
                font-size: 1em;
            }
            
            .info-section {
                padding: 20px;
            }
        }
        .profile-section {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            margin: 40px 0;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .profile-image-container {
            flex-shrink: 0;
        }

        .profile-image {
			width: 250px;
			height: 250px;
			border-radius: 50%;
			object-fit: contain;
			object-position: center center;
			border: 5px solid #921331;
			box-shadow: 0 8px 25px rgba(146, 19, 49, 0.2);
			transition: transform 0.3s ease, box-shadow 0.3s ease;
		}

        .profile-image:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(146, 19, 49, 0.3);
        }

        .profile-content {
            flex: 1;
            padding-left: 20px;
        }

        .profile-title {
            color: #921331;
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 20px;
            border-bottom: 2px solid #921331;
            padding-bottom: 10px;
        }

        .profile-text {
            color: #333;
            line-height: 1.7;
            font-size: 1.1em;
            margin-bottom: 20px;
            text-align: justify;
        }

        .profile-link {
            display: inline-block;
            background: #921331;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(146, 19, 49, 0.3);
        }

        .profile-link:hover {
            background: #b8154a;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(146, 19, 49, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .profile-section {
                flex-direction: column;
                align-items: center;
                gap: 25px;
                padding: 25px 20px;
                text-align: center;
            }

            .profile-content {
                padding-left: 0;
            }

            .profile-image {
                width: 150px;
                height: 150px;
            }

            .profile-text {
                text-align: left;
            }
        }

