@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --bleu-principal: #1e3a8a;
    --pourpre: #800080;
    --cramoisi: #dc143c;
    --parme: #e0b0ff;
    --blanc: #ffffff;
    --ambre: #ffbf00;
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: var(--blanc);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--bleu-principal);
}

.logo h3 {
    color:#FFF;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--blanc);
    font-weight: bold;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--blanc);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    body.nav-active {
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: var(--bleu-principal);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1000;
    }

    .nav-links li {
        margin: 2rem 0;
    }

    .burger {
        display: block;
        z-index: 2000;
    }

    .nav-active .nav-links {
        transform: translateX(0%);
    }
}

/* Hero */

.hero-modern {
    display: flex;
    height: 50vh;
    background-color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    z-index: 10;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--bleu-principal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(30, 58, 138, 0.7);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--ambre);
    color: var(--bleu-principal);
}

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

.hero-visual {
    width: 50%;
    position: relative;
    display:flex;
}

.logo-hero {
    max-width:450px;
    margin:auto;
}

@media screen and (max-width:800px) {
    .logo-hero {
        max-width:300px;
    }
}

.mps {
    max-width:250px;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--parme), var(--bleu-principal));
    opacity: 0.1;
    z-index: 1;
}

.color-accent {
    position: absolute;
    border-radius: 50%;
}

.color-accent-1 {
    width: 200px;
    height: 200px;
    background-color: var(--pourpre);
    top: -100px;
    right: -100px;
    opacity: 0.2;
}

.color-accent-2 {
    width: 150px;
    height: 150px;
    background-color: var(--cramoisi);
    bottom: -75px;
    left: -75px;
    opacity: 0.15;
}

@media screen and (max-width: 768px) {
    .hero-modern {
        flex-direction: column;
        height: auto;
    }

    .hero-content, .hero-visual {
        width: 100%;
        padding: 2rem;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .visual-overlay {
        display:none;
    }
}



/* Presentation */

.presentation {
    background-color: var(--blanc);
    padding: 6rem 0;
}

.presentation .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.association-card {
    background-color: var(--blanc);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.association-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-header {
    background-color: var(--bleu-principal);
    color: var(--blanc);
    padding: 2rem;
    text-align: left;
    position: relative;
}

.card-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top:30px;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--cramoisi);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
    color: var(--bleu-principal);
}

.card-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-content ul {
    list-style-type: none;
    margin-bottom: 2rem;
}

.card-content ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.card-content ul li::before {
    content: '•';
    color: var(--cramoisi);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--ambre);
    color: var(--bleu-principal);
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .presentation {
        padding: 4rem 0;
    }

    .presentation .container {
        grid-template-columns: 1fr;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }
}

/* Nos valeurs */

.nos-valeurs {
    background-color: var(--blanc);
    padding: 4rem 0;
    overflow-x: hidden; /* Empêche le débordement horizontal */
}

.nos-valeurs .container {
    max-width: 1400px; /* Largeur maximale augmentée */
    margin: 0 auto;
    padding: 0 5%;
}

.nos-valeurs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--bleu-principal);
    margin-bottom: 3rem;
    position: relative;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%; /* Largeur complète */
}

.valeur-card {
    background-color: var(--parme);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Hauteur égale */
}

.valeur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    background-color: color-mix(in srgb, var(--parme) 90%, var(--cramoisi));
}

.valeur-card h3 {
    font-size: 1.5rem;
    color: var(--bleu-principal);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.valeur-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--cramoisi);
}

.valeur-card p {
    color: var(--bleu-principal);
    flex-grow: 1; /* Permet l'expansion */
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .nos-valeurs h2 {
        font-size: 2rem;
    }

    .valeurs-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        gap: 1.5rem;
    }

    .valeur-card {
        padding: 1.5rem;
    }
}

/* Comment aider ? */

.comment-aider {
    background-color: var(--blanc);
    text-align: center;
    margin:50px 0;
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--bleu-principal);
    margin-bottom: .5rem;
}

.section-header p {
    font-size:1.2rem;
    color: rgba(30,58,138, .7);
}

.aide-layout {
    display: flex;
    align-items: flex-start; /* Aligner à gauche */
    justify-content: center; /* Centrer horizontalement */
    align-items: center;
}

.aide-image {
    flex:1; /* Prendre une part de l'espace */
}

.aide-image img {
    width:70%; /* Image pleine largeur */
    height:auto; /* Conserver les proportions */
}

@media screen and (max-width:1250px) {
    .aide-image img {
        width:100%;
    }
}

#hero-logo {
    max-width:80%;
}

.aide-options {
    flex:1; /* Prendre une part de l'espace */
    display: flex;
    flex-direction: column; /* Empiler les cartes verticalement */
    gap:1.5rem; /* Espacement entre les cartes */
    padding:40px;
}

.aide-card {
    background: linear-gradient(135deg, var(--parme) 0%, var(--blanc) 100%);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.aide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.aide-card h3 {
    position: relative;
    z-index: 1;
}


.card-icon {
    width:80px;
    height:80px;
    margin-bottom:.5rem;
}

.card-icon svg {
   width:100%;
   height:auto;
   color: var(--cramoisi);
   stroke-width:.5;
}

.aide-card h3 {
   font-size:1.5rem;
   color: var(--bleu-principal);
   margin-bottom:.5rem;
}

.aide-card p {
   color: rgba(30,58,138,.7);
   margin-bottom:.5rem;
}

.aide-card .btn {
   display:inline-block;
   padding:.8rem,1.5rem;
   background-color: var(--ambre);
   color: var(--bleu-principal);
   text-decoration:none;
   border-radius:30px;
   font-weight:bold;
   transition:.3s ease;
}

.aide-card .btn:hover {
   background-color: var(--cramoisi);
   color:white; 
}

@media (max-width:768px) {

    .aide-options {
        padding:0;
    }

    .aide-layout {
        flex-direction: column;
        align-items:center;
        gap:2rem;
    }
    
    .aide-image img {
        height:auto;
    }
 }

 /* Vietnam Voyage */

 .voyage-vietnam {
    background-color: var(--blanc);
    padding: 4rem 0;
}

.voyage-vietnam .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.voyage-title {
    font-size: 2.5rem;
    color: var(--bleu-principal);
    text-align: center;
    margin-bottom: 0.5rem;
}

.voyage-subtitle {
    font-size: 1.5rem;
    color: var(--cramoisi);
    text-align: center;
    margin-bottom: 2rem;
}

.voyage-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.voyage-image {
    flex: 1;
}

.voyage-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.voyage-description {
    flex: 1;
}

.voyage-description p {
    margin-bottom: 1rem;
    color: var(--bleu-principal);
}

.voyage-description ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.voyage-description li {
    margin-bottom: 0.5rem;
    color: var(--bleu-principal);
}

.voyage-vietnam .btn-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--ambre);
    color: var(--bleu-principal);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.voyage-vietnam .btn-more:hover {
    background-color: var(--cramoisi);
    color: var(--blanc);
}

@media (max-width: 768px) {
    .voyage-content {
        flex-direction: column;
    }
    
    .voyage-image, .voyage-description {
        width: 100%;
    }
}

/* F.A.Q */

.faq {
    background-color: var(--blanc);
    padding: 4rem 0;
    width:70%;
    margin:auto;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--bleu-principal);
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.5rem;
    color: var(--cramoisi);
    cursor: pointer;
    display: flex; /* Utiliser flexbox pour aligner le texte et le chevron */
    align-items: center; /* Centrer verticalement */
}

.chevron {
    margin-right: 10px; /* Espacement entre le chevron et le texte */
    transition: transform 0.3s ease; /* Transition pour l'animation */
}

.faq-answer {
    display: none; /* Réponse cachée par défaut */
    font-size: 1rem;
    color: var(--bleu-principal);
    margin-top: 0.5rem;
}

.faq-item.active .faq-answer {
    display: block; /* Affiche la réponse si l'élément est actif */
}

.faq-item.active .chevron {
    transform: rotate(90deg); /* Rotation du chevron lorsque la réponse est visible */
}

@media (max-width: 768px) {
    .faq {
        width:90%;
    }
    .faq h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.25rem;
    }
}

/* C.T.A */

.cta {
    background-color: var(--bleu-principal);
    color: var(--blanc);
    padding: 4rem 0;
    text-align: center;
    width:80%;
    margin:50px auto;
    border-radius:24px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.btn-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--ambre);
    color: var(--bleu-principal);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--cramoisi);
    color: var(--blanc);
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    .cta {
        width:90%;
    }

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

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

/* Footer */

.footer {
    background-color: var(--bleu-principal);
    color: var(--blanc);
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-width: 150px; /* Ajustez la taille du logo */
}

.footer-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.footer-nav li {
    margin-left: 2rem; /* Espacement entre les éléments de la nav */
}

.footer-nav a {
    color: var(--blanc);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--ambre); /* Changement de couleur au survol */
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
}

.mentions-legales {
    color: var(--blanc);
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Empiler les éléments sur mobile */
        align-items: center; /* Centrer les éléments */
        text-align: center; /* Centrer le texte */
    }

    .footer-nav ul {
        flex-direction: column; /* Disposer les liens verticalement */
        margin-top: 1rem; /* Espacement au-dessus de la nav */
    }

    .footer-nav li {
        margin-left: 0; /* Supprimer l'espacement horizontal */
        margin-bottom: 1rem; /* Espacement vertical entre les éléments */
    }
}

/* M.C.E.S Présentation */

.presentation-mces {
    padding: 4rem 2rem;
    background-color: #f0f4f8;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.presentation-mces h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.presentation-mces p {
    text-align: center;
    font-size: 1.2rem;
    color: #34495e;
    width:80%;
    margin:2rem auto 3rem auto;
}

.presentation-details {
    max-width: 800px; /* Limite la largeur pour une meilleure lisibilité */
    margin: 0 auto; /* Centre le contenu */
}

.detail-item {
    background-color: #ffffff; /* Fond blanc pour les détails */
    border-radius: 10px; /* Coins arrondis */
    padding: 1.5rem; /* Espacement interne */
    margin-bottom: 1.5rem; /* Espacement entre les éléments */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Ombre douce */
}

.detail-item h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 0.5rem; /* Espacement sous le titre */
}

.detail-item p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.6; /* Améliore la lisibilité */
}

/* Media Queries */
@media (max-width: 768px) {
    .presentation-mces {
        padding: 2rem; /* Réduire le padding sur les petits écrans */
    }

    .presentation-mces h2 {
        font-size: 2rem; /* Réduction de la taille du titre */
    }

    .presentation-mces p,
    .detail-item p {
        font-size: 1rem; /* Réduction de la taille des paragraphes */
    }

    .detail-item h3 {
        font-size: 1.5rem; /* Réduction de la taille des sous-titres */
    }
}



/* M.C.E.S Mission */

.mission {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    padding: 5rem 0;
    color: #333;
}

.mission .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.section-title i {
    margin-right: 0.5rem;
    color: #e74c3c;
}

.mission-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.mission-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mission-item {
    flex-basis: calc(33.333% - 2rem);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mission-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.mission-item p {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .mission-item {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
}


/* Nos objectifs et valeurs */

.objectives-values {
    background-color: var(--blanc);
    padding: 4rem 2rem;
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Ombre douce */
}

.objectives-values h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--bleu-principal);
    margin-bottom: 2rem;
}

.objectives-values-content {
    display: flex;
    justify-content: space-between; /* Espacement égal entre les colonnes */
    align-items: flex-start; /* Alignement en haut */
    flex-wrap: wrap; /* Permet aux colonnes de passer à la ligne sur les petits écrans */
}

.objectives, .values {
    flex-basis: calc(45% - 20px); /* Largeur des colonnes */
    background-color: rgba(240, 240, 240, 0.8); /* Fond léger pour les colonnes */
    padding: 2rem;
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Ombre douce */
    margin: 10px; /* Espacement entre les colonnes */
}

.objectives h3, .values h3 {
    font-size: 1.8rem;
    color: var(--cramoisi);
    margin-bottom: 1rem;
}

.objectives ul, .values ul {
    list-style-type: disc;
    padding-left: 20px; /* Espacement pour la liste */
}

.objectives li, .values li {
    font-size: 1.1rem;
    padding:10px 0;
    color: var(--bleu-principal);
}

.objectives-values-image {
    text-align: center; /* Centrer l'image */
    margin-top: 2rem; /* Espacement au-dessus de l'image */
}

.objectives-values-image img {
    max-width: 350px; /* Image pleine largeur */
    border-radius: 10px; /* Coins arrondis pour l'image */
}

@media screen and (max-width:800px) {
    .objectives-values-content {
        flex-direction: column;
    }
    .objectives-values {
        width:100%;
    }
    .objectives, .values {
        width:100%;
    }

    .objectives-values-image {
        width:100%;
    }

    .objectives-values-image img {
        width:100%;
        max-width: inherit;
    }
}

/* Vietnam */

.vietnam-trip {
    background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
    padding: 5rem 0;
    color: #fff;
}

.vietnam-trip .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title i {
    margin-right: 0.5rem;
}

.trip-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.trip-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.highlight-item {
    flex-basis: calc(50% - 1rem);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffd700;
    color: #185a9d;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: #fff;
    color: #185a9d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .highlight-item {
        flex-basis: 100%;
    }
}


/* Présentation MPS */

.presentation-mps {
    padding: 4rem 2rem;
    background-color: #FFF;
    border-radius: 15px;
    margin: 2rem auto; /* Centrer la section */
    max-width: 900px; /* Limiter la largeur pour une meilleure lisibilité */
}

.presentation-mps h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif; /* Typographie moderne */
}

.presentation-mps p {
    text-align: justify; /* Justifie le texte pour une meilleure présentation */
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem; /* Espacement entre les paragraphes */
    line-height: 1.6; /* Améliore la lisibilité */
}

.presentation-mps h3 {
    font-size: 2rem;
    color: #e74c3c;
    margin: 2rem 0; /* Espacement au-dessus des sous-titres */
    position: relative; /* Pour le soulignement personnalisé */
}

.presentation-mps h3::after {
    content: '';
    display: block;
    width: 50px; /* Largeur de la ligne sous le titre */
    height: 4px; /* Épaisseur de la ligne */
    background-color: #e74c3c; /* Couleur de la ligne */
    margin-top: 5px; /* Espacement entre le titre et la ligne */
}

.presentation-mps ul {
    list-style-type: disc; /* Style de liste avec des puces */
    padding-left: 20px; /* Espacement à gauche pour les listes */
}

.presentation-mps li {
    font-size: 1.1rem; 
    color: #34495e;
    margin-bottom: 0.5rem; /* Espacement entre les éléments de liste */
}

.presentation-mps blockquote {
    background-color: #ffffff; /* Fond blanc pour la citation */
    border-left: 4px solid #e74c3c; /* Bordure colorée à gauche */
    padding: 1rem; /* Espacement interne */
    margin: 1.5rem 0; /* Espacement autour de la citation */
    font-style: italic; /* Italique pour le texte de citation */
    font-size: 1.1rem;
}

/* Effet de transition sur les blockquotes */
.presentation-mps blockquote:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Ombre au survol */
}

/* Media Queries */
@media (max-width: 768px) {
    .presentation-mps {
        padding: 2rem; /* Réduire le padding sur les petits écrans */
        margin: 1rem; /* Ajuster les marges sur petits écrans */
    }

    .presentation-mps h2 {
        font-size: 2.2rem; /* Réduction de la taille du titre */
    }

    .presentation-mps p,
    .presentation-mps h3,
    .presentation-mps li {
        font-size: 1rem; /* Réduction de la taille des paragraphes et titres */
        line-height: 1.4; /* Ajustement de l'interligne pour petits écrans */
    }

}

/* Adresse */

.mps-location {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.location-info {
    flex: 1;
    padding-right: 3rem;
}

.location-info h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.location-info address {
    font-style: normal;
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.location-info address p,
.meeting-times p {
    margin: 0.5rem 0;
}

.location-info i {
    margin-right: 0.5rem;
    color: #e74c3c;
}

.meeting-times {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.btn-directions {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-directions:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.location-image {
    flex: 1;
    position: relative;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.location-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }

    .location-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .location-info h2 {
        font-size: 2.2rem;
    }

    .location-image {
        width: 100%;
    }
}

/* Contact */

.contact {
    background: #f0f4f8;
    padding: 5rem 0;
    color: #333;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    text-align: center;
    font-size: 1.2rem;
}

.contact-info p {
    margin:10px 0;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: #e74c3c;
    text-align: center;
    margin:20px 0;
}

.contact-info address {
    font-style: normal;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #e74c3c; /* Couleur des icônes */
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc; /* Bordure grise */
}

textarea {
    resize:vertical;
}

.contact-form button {
    background-color: #3498db; /* Couleur du bouton */
    color: white;
    padding: 1rem;
    border-radius: 5px;
    border: none; /* Pas de bordure */
    cursor: pointer; /* Curseur en main */
}

.contact-form button:hover {
    background-color: #2980b9; /* Couleur au survol */
}

.social-links {
    text-align: center; /* Centre les liens sociaux */
}

.social-links h3 {
    margin-top: 2rem; /* Espacement au-dessus des liens sociaux */
}

.social-icon {
    font-size: 2rem; /* Taille des icônes sociales */
    margin-right: 1rem; /* Espacement entre les icônes */
    color: #34495e; /* Couleur des icônes */
}

.social-icon:hover {
    color: #e74c3c; /* Couleur au survol */
}

/* Media Queries */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 2rem; /* Réduction de la taille du titre sur petits écrans */
    }

    .contact p,
    .contact-info h3,
    .contact-form label,
    .contact-form button {
        font-size: 1rem; /* Réduction de la taille des textes sur petits écrans */
    }
}

/* Mentions Legales */

.legal-notice {
    background: #f9f9f9;
    padding: 5rem 0;
    color: #333;
}

.legal-notice .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-notice h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-notice #mentions-subtitle {
    text-align: center;
}

.legal-notice p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.legal-details,
.legal-articles,
.contact-info {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem; /* Espacement entre les sections */
}

.legal-details h3,
.legal-articles h3,
.contact-info h3 {
    font-size: 1.8rem;
    color: #e74c3c; /* Couleur des titres */
    margin:20px 0;
}

.legal-details p,
.contact-info p {
    font-size: 1.1rem; /* Taille de police pour les paragraphes */
}

.legal-articles ul {
    list-style-type: disc; /* Style de liste avec des puces */
    padding-left: 20px; /* Espacement à gauche pour les listes */
}

.legal-articles li {
    padding:20px 0;
    line-height:2;
}

.contact-info address {
    font-style: normal; /* Normaliser le style de l'adresse */
}

/* Icônes */
.contact-info i {
    margin-right: 0.5rem; /* Espacement entre l'icône et le texte */
}

/* Media Queries */
@media (max-width: 768px) {
    .legal-notice h2 {
        font-size: 2rem; /* Réduction de la taille du titre sur petits écrans */
    }

    .legal-notice p,
    .legal-details h3,
    .contact-info h3 {
        font-size: 1rem; /* Réduction de la taille des textes sur petits écrans */
    }
}
