/* Styles Généraux */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.bg-light {
    background-color: #f4f4f4;
}

h2 {
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Section Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

.btn-scroll {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-scroll:hover {
    background-color: #219150;
}

/* Accordéon FAQ */
.accordion {
    border-top: 1px solid #ddd;
}

.accordion-header {
    background-color: #fff;
    color: #2c3e50;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 18px;
    margin: 0;
}

/* Map et Footer */
.map-container {
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
}