body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HERO */
.hero {
    height: 70vh;
    background: url("hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#btn-contact {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #0078d7;
    color: white;
    border: none;
    cursor: pointer;
}

#btn-contact:hover {
    background-color: #005fa3;
}

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

.section h2 {
    color: #0078d7;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
}

.faq-answer {
    display: none;
    margin-top: 5px;
}
