* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    position: relative;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('logo.png') no-repeat center center fixed;
    background-size: contain;
    opacity: 0.1; /* Transparent background logo */
    z-index: -1;
}

header {
    background-color: #2e7d32; /* Green */
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo .nav-logo {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #ffc107; /* Yellow on hover */
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero, .content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.hero h1 {
    color: #2e7d32; /* Green */
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d32f2f; /* Red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ffc107; /* Yellow */
}

footer {
    background-color: #2e7d32; /* Green */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #2e7d32;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }
}

.login-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    color: #2e7d32; /* Green */
    font-weight: bold;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.login-form button.cta-button {
    width: 100%;
    background-color: #d32f2f; /* Red */
    border: none;
    padding: 10px;
    font-size: 16px;
}

.login-form button.cta-button:hover {
    background-color: #ffc107; /* Yellow */
}