/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header {
    background: linear-gradient(135deg, #004d40, #00796b);
    color: white;
    text-align: center;
    padding: 20px 0;
}

header .logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Navigation */
nav {
    background: #00695c;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 40px 0;
}

.light-bg {
    background: #f4f4f4;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section p, .section ul {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.section ul {
    list-style: none;
}

.section ul li {
    padding: 10px;
    background: white;
    margin: 10px auto;
    border-radius: 5px;
    max-width: 500px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #004d40;
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #004d40;
        width: 100%;
        padding: 10px 0;
    }

    .nav-links a {
        padding: 10px;
        display: block;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }
}
