
    /* Police */
    @font-face {
    font-family: Poppins-thin;
    src: url(../police/Poppins/Poppins-Thin.ttf);

    }
    @font-face {
    font-family: Poppins-light;
    src: url(../police/Poppins/Poppins-Light.ttf);
    }
    @font-face {
    font-family: Poppins-meduim;
    src: url(../police/Poppins/Poppins-Medium.ttf);
    }
    @font-face {
    font-family: Poppins-regular;
    src: url(../police/Poppins/Poppins-Regular.ttf);
    }
    @font-face {
    font-family: Poppins-semibold;
    src: url(../police/Poppins/Poppins-SemiBold.ttf);
    }
    @font-face {
    font-family: Poppins-ExtraLight;
    src: url(../police/Poppins/Poppins-ExtraLight.ttf);
    }

    :root {
    --font-paragraphe2:Poppins-ExtraLight;
    --font-normal: Poppins-semibold;
    --font-titre: Poppins-regular;
    --font-bold: Poppins-meduim;
    --font-paragraphe: Poppins-light;
    --font-titre3: Poppins-thin;
    }


:root {
    /* --bacground: #7e5656; 
    --bacground-hover: #b23333;
    --Couleur-Background: #4c5a7d;
    --Couleur-Titre: #00c8d6;
    --Couleur-Texte: #f5f6fa;
    --Couleur-body: #f5f6fa;
    --Couleur-hover: #00b783; 
    --Couleur-logo:#eea412;
    --couleur-body: #f5f6fa;
    --Couleur-drop: #999; */

    --Couleur-Titre2: #2563eb;
    --Couleur-Titre3: #86efac;
    --Couleur-Titre: #ff5b00;
    --Couleur-bouton: #00c8d6;
    --Couleur-bouton-hover: #00b783;
}


:root {
  --color-title: #0A2540;        
  --color-title2: #00B3A4;

  --color-paragraphe: #2E2E2E;
  --color-paragraphe2: #FFFFFF;         

  --color-section: #F8FAFC;      
  
  --color-primary: #3a7e83;      
  --color-hover: #E63946;        
  --Color-hover2: #FF8C00;




    --Couleur-Titre: #ff5b00;
    --Couleur-bouton: #00c8d6;
    --Couleur-bouton-hover: #00b783;

}






.about-section {
    width: 100%;
    padding: 10px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Image */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 7px;
}




/* Texte */
.about-content {
    flex: 1.2;
}

.titre3 {
    display: flex;
    gap: 15px;
}

.about-subtitle {
font-family: var(--font-paragraphe);
letter-spacing: 1px;
margin-top: 30px;
font-size: 30px;
color: var(--Couleur-Titre);
}


    /* Conteneur lignes à droite (alignées à gauche) */
    .lines2.right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      align-items: flex-start; 
      margin-top: 36px;
    }

    /* Ligne du haut (plus courte) */
    .lines2 span:first-child {
      width: 45px;
      height: 3px;
      background-color: var(--Couleur-Titre);
      border-radius: 10px;
    }

    /* Ligne du bas (plus longue) */
    .lines2 span:last-child {
      width: 80px;
      height: 3px;
      background-color: var(--Couleur-Titre);
      border-radius: 10px;
    }


.about-content h2 {
    font-family: var(--font-titre3);
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--Couleur-bouton-hover);
    margin-top: -6px;
}

.about-content p {
    font-family: var(--font-paragraphe);
    font-size: 17px;
    line-height: 1.7;
    margin-top: -19px;
    text-align: justify;
}


/* ===== LISTE OBJECTIFS ===== */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 30px;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-paragraphe);
    font-size: 16px;
    color: var(--color-paragraphe);
}

.check-icon {
    color: var(--Couleur-Titre2); 
    font-size: 18px;
    font-weight: bold;
}

/* Responsive mobile */
@media (max-width: 630px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}


/* ===== RESPONSIVE ===== */

/* Tablettes */
@media (max-width: 1200px) {
    .about-container {
        flex-direction: column;
        gap: 20px;
        margin: 10px 15px;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .about-subtitle {
        text-align: center;
    }

    .about-content {
        margin-top: -30px;
        /* background: red; */
    }
}

/* Mobiles */
@media (max-width: 576px) {

    .about-content h2 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 16px;
        text-align: left;
    }
}