* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #fff;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
header {
    background-color: #000;
    padding: 20px 0;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
}
.menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}
.hero {
    position: relative;
    background: url('hero_final.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
}
.about {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}
.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
}
footer {
    padding: 40px 20px;
    text-align: center;
    color: #e63946;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Mobile Styles */
@media (min-width: 600px) {
    .buttons {
        flex-direction: row;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

.faq {
    background-color: #111;
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    text-align: left;
}
.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}
.faq-item {
    margin-bottom: 30px;
}
.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e63946;
}
.faq-item p {
    font-size: 1rem;
    color: #ddd;
}