/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Header and Navigation */
header {
    background: #00796b;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.menu-toggle {
    display: none; /* Hide by default */
    background: #00796b;
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: #004d40;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
}

nav ul li a:hover {
    background: #00695c;
}

section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #00796b;
    margin-bottom: 1rem;
}

blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #00796b;
    padding-left: 1rem;
    margin: 1rem 0;
}

a {
    color: #00796b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input, form textarea, form button {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

form button {
    background: #00796b;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #005d4f;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #004d40;
    color: #fff;
    margin-top: 2rem;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger menu only on smaller screens */
    }

    nav ul {
        display: none; /* Hide menu initially */
        flex-direction: column;
        align-items: center;
        background: #004d40;
        width: 100%;
    }

    nav ul.active {
        display: flex; /* Show menu when active */
    }

    nav ul li {
        width: 100%; /* Full-width menu items */
        border-bottom: 1px solid #00796b;
    }

    nav ul li a {
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }

    header h1 {
        font-size: 1.8rem;
        padding: 0.5rem;
    }

    section {
        padding: 1rem;
        text-align: left;
    }

    footer {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

