/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: green;
    /* Green background */
    color: white;
    /* White text for content */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container for Content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    /* Center align text */
}

/* Headline Styling */
h1,
h2 {
    color: white;
    font-weight: bold;
    text-align: center;
}

/* Paragraph Styling */
p {
    font-size: 1.2em;
    line-height: 1.5;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 10px auto;
}

/* Header Styles */
header {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

header a:hover {
    text-decoration: underline;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 0 10px;
}

.menu-icon {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Call-to-Action Button */
.cta a {
    background-color: #0a0;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}

.cta a:hover {
    background-color: #090;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
    }
}