/* --- Base Styles --- */
/* Import d'une police Ã©lÃ©gante (remplacez-la par une police de votre choix) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Déclaration de la police Neuropol Custom */
@font-face {
    /* C'est le nom que vous utiliserez dans les autres règles CSS (ex: .hero-title) */
    font-family: 'Neuropol Custom';

    /* Chemin vers votre fichier de police.
       Le chemin '../fonts/' est correct si votre fichier CSS est dans 'assets/css/' 
       et votre police dans 'assets/fonts/' */
    src: url('https://assets.team-réality.com/assets/fonts/neuropol/Neuropol X Rg.otf') format('opentype');

    font-weight: normal;
    font-style: normal;
    /* Indique au navigateur de charger la police en priorité ou d'utiliser une alternative temporaire */
    font-display: swap;
}

:root {
    --primary-color: #000000;
    --text-color: #333333;
    --bg-color: #ffffff;
}

/* On utilise .container pour rester cohérent avec tes autres pages */
.container {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
    color: var(--text-color);
    font-family: Arial, sans-serif;
}

.container h1 {
    text-align: center;
    font-family: 'neuropol-2', sans-serif;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.container h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.container p {
    margin-bottom: 20px;
    text-align: justify;
}

.container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.container li {
    margin-bottom: 10px;
}

.container strong {
    color: var(--primary-black);
}

/* Style simple pour Kapoli */
.container p strong {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
}