* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background: #333;
    color: #088238;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #088238;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background: #088238;
    margin: 3px 0;
}

.hero {
    background: white;
    color: black;
    text-align: center;
    padding: 20px 20px;
}

.cta-button {
    background: #088238;
    color: white;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 5px;
}

section {
    background: white;
    color: black;
    padding: 0px 40px;
    text-align: left;
}

footer {
    background: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 20px 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #333;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}
