* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #222;
    background-color: #f8f8f8;
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    background-color: #2a4d2e;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #d4a017;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #d4a017;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1544947950-fa07a98d45f6');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: #d4a017;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #b58900;
}

.section {
    padding: 6rem 0;
}

.section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #2a4d2e;
    text-align: center;
}

.section h3 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #2a4d2e;
}

.section p, .section ul {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.section ul {
    list-style: circle;
    padding-left: 2rem;
}

.footer {
    background-color: #2a4d2e;
    color: #fff;
    text-align: center;
    padding: 2.5rem 0;
}

.footer p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #2a4d2e;
        padding: 1.5rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .section h3 {
        font-size: 1.6rem;
    }

    .section p, .section ul {
        font-size: 1.1rem;
    }
}