* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
    background: #f5f7fa;
}

/* NAV */
nav {
    position: fixed;
    width: 100%;
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1000;
}

.links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

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

.hero-content {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    color: white;
    border-radius: 10px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background: #00a8ff;
    color: white;
    cursor: pointer;
}

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

/* FAQ */
.faq {
    background: white;
    margin: 10px 0;
    padding: 15px;
    cursor: pointer;
    border-radius: 6px;
}

.q {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.a {
    display: none;
    margin-top: 10px;
}

/* ANIMATION SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .links {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }

    .menu-toggle {
        display: block;
    }
}