
nav{text-align:center;background:#0a3d91;padding:10px}
nav a{color:#fff;margin:10px;text-decoration:none;font-weight:bold}
.container{max-width:1000px;margin:auto;padding:30px}
footer{background:#c1121f;color:#fff;text-align:center;padding:15px}
.success{color:green;font-weight:bold}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fa;
}

.hero {
  background-image: url('../images/image-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  min-height: calc(100vh - 80px);
  margin-top: 80px; /* 👈 clé de la correction */

  padding-left: 5%;
  padding-right: 5%;

  display: flex;
  align-items: center;
  color: #fff;
}


/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    text-align: center;
  }
}


.hero-content {
  max-width: 900px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0a3d91;
}

.hero-message {
  background: whitesmoke;
  color: #c1121f;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  max-width: 700px;
  margin: 1.5rem 0;
}


/* Mobile */
@media (max-width: 576px) {
  .hero-message {
    font-size: 1rem;
    max-width: 95%;
    padding: 0.9rem 1rem;
    text-align: center;
  }
}


/* Bouton principal */
.hero-btn {
  background-color: #c1121f;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn:hover {
  background-color: #a60f18;
  transform: translateY(-2px);
}

/* -------- TABLETTE -------- */
@media (max-width: 992px) {
  .hero {
    justify-content: left;
    text-align: left;
  }

  .hero-content {
    max-width: 700px;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 600px) {
  .hero {
    min-height: calc(100vh - 70px);
    padding: 0 20px;
  }

  .hero-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  z-index: 1000;
  height: 80px; /* hauteur réelle */

}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Conteneur du logo */
.logo a {
  display: flex;            /* Flex pour aligner horizontalement */
  align-items: center;      /* Centrer verticalement l'image et le texte */
  gap: 10px;                /* Espace entre image et texte */
  text-decoration: none;    /* Supprimer le souligné */
  color: #0a3d91;           /* Couleur du texte */
}

/* Image du logo */
.logo-img {
  width: 70px;             /* Largeur fixe ou responsive */
  height: 70px;            /* Hauteur fixe */
  object-fit: contain;     /* Ajuste l'image sans la déformer */
}

/* Texte du logo */
.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;      /* Empêche le texte de passer à la ligne */
}

/* Responsive : réduire le logo et texte sur mobile */
@media (max-width: 576px) {
  .logo-img {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1rem;
  }
}


/* Menu Desktop */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #0a3d91;
}

/* Bouton Contact */
.nav-menu li a.btn-nav {
  background: #c1121f;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
}

/* ===== MENU MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #0a3d91;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #ffffff;
    padding: 20px 0;
    gap: 15px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    font-size: 1.1rem;
  }
}

/* Section Vision */
.vision {
  background: #f9f9f9;
  text-align: center;

}

.vision h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #0044cc; /* bleu */
  text-transform: uppercase;
  margin-top: -50px;
}

.vision p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #cc0000; /* rouge */
}

/* Cards container */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Card design */
.card {
  background: #ffffff;
  border: 2px solid #0044cc;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #cc0000;
}

/* Icon style */
.icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #cc0000;
  transition: color 0.3s, transform 0.3s;
}

.card:hover .icon {
  color: #0044cc;
  transform: scale(1.2);
}

/* Card title */
.card h3 {
  color: #0044cc;
  margin-bottom: 10px;
  font-size: 1.4em;
  text-transform: uppercase;
}

/* Card text */
.card p {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
}
/* ligne */
.ligne-bicolor {
  border: none;
  height: 8px; /* épaisseur de la ligne */
  background: linear-gradient(to right, #0044cc, #cc0000); /* bleu → rouge */
  border-radius: 3px; /* arrondir légèrement les bords */
  margin-top: -5px;
}
/* Section */
.valeurs {
  background:  #0a3d91;
  text-align: center;
}

/* Titre */
.valeurs h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  margin-top: -40px;
  color: white; 
  text-transform: uppercase;
}

/* Intro */
.valeurs .intro {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: white; 
}

/* Cards container */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Card design */
.card {
  background: #ffffff;
  border: 2px solid #0044cc;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #cc0000;
}

/* Card title */
.card h3 {
  color: #0044cc;
  margin-bottom: 15px;
  font-size: 1.5em;
  text-transform: uppercase;
}

/* Card text */
.card p {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
}
/* Icônes */
.icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: red;
  transition: color 0.3s;
}

.card:hover .icon {
  color: #0044cc;
}
/* news */
.actualites {
  background: #f9f9f9;
  margin-top: -100px;
  text-align: center;
}

.actualites h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #0044cc; /* bleu */
  text-transform: uppercase;
}

.actualites .intro {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #cc0000; /* rouge */
}

/* Cards container */
.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card design */
.news-card {
  background: #fff;
  border: 2px solid #0044cc;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #cc0000;
}

/* Category & Date */
.news-card .category {
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold;
  color: #cc0000;
  margin-bottom: 5px;
}

.news-card .date {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin-bottom: 10px;
}

/* Title */
.news-card h3 {
  font-size: 1.3em;
  color: #0044cc;
  margin-bottom: 5px;
}

/* Text */
.news-card p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
}

/* Bouton */
.btn-container {
  margin-top: 30px;
}

.btn-primary {
  background: #d32f2f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b71c1c;
}
.news-card img.news-img {
  width: 100%;       /* s'adapte à la largeur du conteneur */
  height: auto;      /* hauteur proportionnelle */
  object-fit: contain; /* garde l'image entière visible */
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
  background-color: #f0f0f0; /* optionnel : pour les bandes vides si l'image ne remplit pas tout */
}

/* INTERET*/
.interets {
  background: #f9f9f9;
  text-align: center;
}

.interets h2 {
  font-size: 2.5em;
  margin-top: -50px;
  margin-bottom: 40px;
  color: #0044cc; /* bleu */
  text-transform: uppercase;
}

.interest-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.interest-card {
  background: #fff;
  border: 2px solid #0044cc;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.interest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #cc0000;
}

.icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #cc0000;
  transition: color 0.3s, transform 0.3s;
}

.interest-card:hover .icon {
  color: #0044cc;
  transform: scale(1.2);
}

.interest-card h3 {
  color: #0044cc;
  margin-bottom: 10px;
  font-size: 1.4em;
  text-transform: uppercase;
}

.interest-card p {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
}
/* épaisseur de la ligne DE SEPARATION */
.ligne-bicolor {
  border: none;
  height: 8px; /* épaisseur de la ligne */
  background: linear-gradient(to right, #0044cc, #cc0000); /* bleu → rouge */
  border-radius: 3px; /* arrondir légèrement les bords */
}
/* FOOTER*/
.footer {
  background: linear-gradient(135deg, #0044cc, #cc0000); /* bleu → rouge */
  color: #fff;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer h1, .footer h4 {
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-about p {
  font-size: 0.95em;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffd700; /* doré au survol */
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.95em;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffd700;
}

/* Icônes réseaux sociaux */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 1.2em;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  font-size: 0.85em;
}
.footer-contact,.footer-links,.footer-about{
  text-align: left;
  margin-top: -90px;
  padding-top: 15px;
  font-size: 20px;
}
------------------------------------------------------
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* COULEURS */
:root {
    --blue: #0a2a66;
    --red: #c1121f;
    --light: #f5f7fa;
}

/* HERO */
.hero-about {
    height: 70vh;
    background: url('../images/about-coverr.png') center/cover no-repeat;
    position: relative;
}

.hero-about .overlay {
    background: rgba(10, 42, 102, 0.75);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-about h1 {
    font-size: 3rem;
}

.hero-about p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* ABOUT */
.about-container {
    padding: 60px 15%;
    background: var(--light);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* TIMELINE */
.timeline {
    padding: 60px 15%;
}

.timeline h2 {
    text-align: center;
    color: var(--blue);
    margin-bottom: 40px;
}

.timeline-item {
    border-left: 4px solid var(--red);
    padding-left: 20px;
    margin-bottom: 25px;
}

.timeline-item span {
    font-weight: bold;
    color: var(--red);
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: var(--blue);
    color: #fff;
    padding: 50px 10%;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.2rem;
    color: var(--red);
}

.stat-box p {
    margin-top: 10px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container,
    .timeline,
    .values {
        padding: 40px 8%;
    }

    .hero-about h1 {
        font-size: 2.2rem;
    }
}


/* ======= Section actualités ======= */
.actualites {
  margin-top: 10px;
    padding: 30px 0;
    background-color: #f5f7fa;
}

.actualites h2 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 2em;
}

.actualites p.intro {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* ======= News Cards ======= */
.news-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    flex: 3;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Wrapper de l'image */
.news-card .news-img-wrapper {
  width: 100%;
  height: 180px;          /* hauteur fixe pour toutes les cartes */
  overflow: hidden;
  display: flex;
  align-items: center;    /* centre verticalement */
  justify-content: center; /* centre horizontalement */
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Image à l'intérieur du wrapper */
.news-card img.news-img {
  width: auto;      /* s'adapte selon la largeur naturelle */
  height: 100%;     /* prend toute la hauteur du wrapper */
  object-fit: contain; /* pas de coupure, proportion respectée */
  display: block;
}

.content {
    padding: 1px;
    display: flex;
    flex-direction: column;
    height: 220px;
}

.news-card .category,
.news-card .date {
    font-size: 0.85em;
    margin-bottom: 5px;
}

.news-card .category {
    color: #0073e6;
}

.news-card .date {
    color: #999;
}

.news-card h3 {
    color: #004080;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.news-card p {
    flex: 1;
    color: #555;
    font-size: 0.95em;
    line-height: 1.4;
}

.news-card a.read-more, button {
    text-decoration: none;
    color: white;
    background-color: #0073e6;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    width: max-content;
    margin-top: 10px;
    transition: background 0.3s;
}

.news-card a.read-more:hover {
    background-color: #004080;
}

/* ======= categorie inline  ======= */

.categories-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* espace entre les liens */
    align-items: center;
    margin-bottom: 20px;
}

.categories-inline a {
    text-decoration: none;
    color: #333;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

/* Ajouter le séparateur "|" automatiquement */
.categories-inline a:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: #ccc;
}

.categories-inline a:hover,
.categories-inline a.active {
    color: #0073e6;
}

/* ======= Search ======= */
.search-box {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end; /* aligne à droite */
}

.search-box input {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #ccc;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #0073e6;
    box-shadow: 0 0 8px rgba(0,115,230,0.3);
}

/* ======= Responsive ======= */
@media (max-width: 1200px) {
    .container {
        flex-direction: column;
        gap: 30px;
    }
    .sidebar {
        order: 2;
        margin-top: 30px;
        align-items: flex-start; /* pour mobile, on remet à gauche */
        text-align: left;
    }
    .news-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .news-cards {
        grid-template-columns: 1fr;
    }
    .search-box {
        justify-content: flex-start; /* mobile, on remet à gauche */
    }
}
/* ======= Pagination ======= */
.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.pagination a.active,
.pagination a:hover {
    background: #0073e6;
    color: #fff;
    border-color: #0073e6;
}

/* ======= Categories inline ======= */
.categories-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.categories-inline a {
    text-decoration: none;
    color: #333;
    position: relative;
    padding: 5px 0;
}

.categories-inline a:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: #ccc;
}

.categories-inline a.active,
.categories-inline a:hover {
    color: #0073e6;
}
--------------------------
/* ===== Conteneur de l'article ===== */
.post-detail .container {

    max-width: 900px;          /* largeur confortable pour lecture */
    margin: 0 auto;
    padding: 25px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #222;
    text-align: justify;       /* texte justifié comme journal */
}

/* Image principale */
.post-detail .post-img {
  margin-top: -150px,;
    width: 100%;              /* image pleine largeur du conteneur */
    height: auto;             /* proportion naturelle */
    max-height: 500px;        /* limite pour éviter images trop grandes */
    object-fit: contain;       /* image entière visible, pas de recadrage */
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Bouton retour */
.post-detail .back-btn {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    transition: color 0.3s;
}
.post-detail .back-btn:hover {
    color: #004080;
}

/* Header de l'article */
.post-detail .post-header h1 {
    font-size: 2.4em;
    margin-bottom: 10px;
    color: #111;
    line-height: 1.2;
}

.post-detail .post-meta {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 30px;
}

.post-detail .post-meta .category {
    color: #0073e6;
    font-weight: bold;
    margin-right: 10px;
}

/* Contenu de l'article */
.post-detail .post-content {
    font-size: 1.1em;
    color: #333;
    line-height: 1.9;
    text-align: justify;
}

/* Paragraphes avec marge */
.post-detail .post-content p {
    margin-bottom: 18px;
}

/* Colonnes pour grands écrans */
@media (min-width: 900px) {
    .post-detail .post-content {
        column-count: 2;
        column-gap: 40px;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .post-detail .container {
        padding: 15px 10px;
    }
    .post-detail .post-header h1 {
        font-size: 1.8em;
    }
    .post-detail .post-content {
        column-count: 1; /* une seule colonne sur mobile */
    }
}

------------------------------
.contact {
    padding: 50px 0;
    background-color: #f5f7fa;
}

.contact h2 {
    color: #004080;
    margin-bottom: 10px;
}

.contact .intro {
    color: #555;
    margin-bottom: 30px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
}

.contact-form button {
    background: #0073e6;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #004080;
}

.alert {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
}
------------------
/* Boutons de choix */
.choice-buttons {
    display:flex;
    gap:20px;
    justify-content:center;
    margin:25px 0;
}
.choice-buttons button {
    padding:12px 25px;
    font-size:1.1em;
    font-weight:bold;
    border:none;
    border-radius:25px;
    cursor:pointer;
    background-color:#0073e6;
    color:white;
    transition:0.3s;
}
.choice-buttons button:hover {
    background-color:#004080;
}

/* Formulaires */
form {
    margin-top:20px;
    background:#fff;
    padding:25px 30px;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* Champs */
.form-group label {
    font-weight:600;
    margin-bottom:5px;
    color:#004080;
}
.form-group input, .form-group textarea, .form-group select {
    padding:10px 15px;
    border:1px solid #ccc;
    border-radius:10px;
    font-size:1em;
    transition:0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline:none;
    border-color:#0073e6;
    box-shadow:0 0 5px rgba(0,115,230,0.3);
}

/* Boutons de soumission */
.btn-primary {
    align-self:flex-start;
    padding:12px 25px;
    background:#0073e6;
    color:white;
    font-weight:bold;
    border:none;
    border-radius:25px;
    cursor:pointer;
    transition:0.3s;
}
.btn-primary:hover {
    background:#004080;
}

/* Cacher formulaire */
.form-hidden {
    display:none;
}
---------------------------
.donor-card{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    max-width:600px;
    margin:30px auto;
    text-align:center;
}

.donor-card h3{
    color:#0a3d91;
    margin-bottom:10px;
}

.donor-intro{
    color:#555;
    margin-bottom:25px;
    font-size:15px;
}

.payment-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.payment-item{
    background:#f4f6fb;
    padding:20px;
    border-radius:12px;
    transition:transform .3s, box-shadow .3s;
}

.payment-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}


.payment-item h4{
    margin:10px 0;
    color:#0a3d91;
}

.payment-item .number{
    font-size:18px;
    font-weight:bold;
    color:#000;
}

.payment-item .name{
    font-size:13px;
    color:#666;
}

.donor-note{
    margin-top:20px;
    font-style:italic;
    color:#444;
}

.payment-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Cadre uniforme */
.logo-wrapper {
    width: 100%;
    height: 80px;              /* même hauteur pour tous */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Logo */
.operator-logo {
    max-width: 70%;
    max-height: 60px;
    object-fit: contain;       /* jamais coupé */
    display: block;
}


/* Mobile */
@media(max-width:600px){
    .donor-card{
        padding:20px;
    }
}
----------------------
/* Section Bilan */
.bilan-section {
    margin: 40px 0;
    background: #f8f9fb;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Image bande */
.bilan-banner {
    position: relative;
    width: 100%;
    height: 300px;
}

.bilan-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay texte */
.bilan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 64, 128, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.bilan-overlay h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.bilan-overlay p {
    font-size: 1.2em;
    font-weight: 500;
}

/* Contenu */
.bilan-content {
    padding: 30px;
    text-align: center;
}

.bilan-content p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #333;
}

/* Bouton PDF */
.btn-bilan {
    display: inline-block;
    padding: 12px 25px;
    background: #c1121f;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-bilan:hover {
    background: #9b0f18;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .bilan-banner {
        height: 200px;
    }

    .bilan-overlay h2 {
        font-size: 1.4em;
    }

    .bilan-overlay p {
        font-size: 1em;
    }
}
---------------------------
