/* Base */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f6f8;
  background-image: url("img.jpg");
}

/* HERO */
.hero {
    height: 80vh;
    background-image: url("hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #27ae60;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.hero button:hover {
    background-color: #219150;
}

/* SECTIONS */
.section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* LISTE */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: white;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

/* ACCORDÉON */
.accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-question {
    width: 100%;
    text-align: left;
    padding: 12px;
    border: none;
    background: #2c3e50;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.accordion-question::after {
    content: " +";
    float: right;
}

.accordion-item.active .accordion-question::after {
    content: " -";
}

.accordion-answer {
    display: none;
    padding: 12px;
    background: white;
}

/* CONTACT MAP */
.map {
    margin-top: 15px;
}