* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f8f8f8;
  color: #333;
}
/* Navbar en haut */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
}

/* Logo */
.logo {
    height: 75px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
/* Pour positionner le sous‑menu */
.services-item {
    position: relative;           /* référence pour le sous‑menu */
}

/* Sous‑menu caché par défaut */
.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;                    /* juste sous le lien parent */
    left: 0;
    background: #f5f5f5;
    border: 1px solid #ddd;
    min-width: 220px;
    display: none;                /* masqué */
    z-index: 10;
}

/* Style des liens du sous‑menu */
.submenu > li > a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
}

.submenu > li > a:hover {
    background: #eaeaea;
    color: #c62828;
}

/* Top-bar SOUS la navbar */
.top-bar {
    position: fixed;
    top: 105px; /* dépend de la hauteur de ta navbar */
    left: 0;
    width: 100%;
    background-color: #2e6613;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    z-index: 999; /* juste sous la navbar */
}

/* Top-bar liens */
.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.top-bar .right span {
    margin-left: 15px;
}

/* Icône Facebook dans la top‑bar */
.top-bar .social {
    margin-left: 12px;           /* espace après le téléphone */
    color: #ffffff;              /* assure la même couleur que le texte */
    text-decoration: none;
    font-size: 18px;             /* adapte la taille si besoin */
}

.top-bar .social:hover {
    color: #cfd8dc;              /* léger changement au survol (optionnel) */
}

/* Navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #4caf50;
}

/* Burger menu */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        text-align: center;
        z-index: 998;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .main-nav {
        flex-wrap: wrap;
    }
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/faq.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  margin-top: 145px;     
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.faq-container {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section h2 {
  color: #b68c4c;
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #b68c4c;
  padding-bottom: 10px;
}

.faq {
  margin-bottom: 20px;
}

.faq h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #444;
}

.faq p {
  background: #fff;
  padding: 15px;
  border-left: 4px solid #b68c4c;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.site-footer {
  background-color: #2e6613;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  margin-top: 60px;
}

