/* Mobile First Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f9f9f7; /* warm neutral */
    color: #333; /* soft charcoal */
}

/* Navigation */
header nav {
    background-color: #2a6041; /* deep green */
    text-align: center;
}

header nav ul {
    list-style-type: none;
    padding: 10px;
}

header nav ul li {
    display: inline-block;
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #c47f17; /* amber accent on hover */
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hero h1 {
    font-size: 22px;
    color: #2a6041; /* green for consistency */
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    color: #555;
}

/* Content Section */
.content {
    margin-top: 20px;
    background-color: #fff;
    padding: 18px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.content h2 {
    font-size: 22px;
    color: #2a6041; /* primary deep green */
    margin-bottom: 0.5em;
}

.content h4 {
    font-size: 18px;
    color: #c47f17; /* warm amber accent */
    margin-top: 1.2em;
    margin-bottom: 0.4em;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 1em;
}

/* Lists */
.content li {
    font-size: 16px;
    color: inherit;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 12px;
    background-color: #2a6041;
    color: #fff;
    font-size: 14px;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    body {
        padding: 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 20px;
    }

    .content {
        padding: 25px 35px;
    }

    .content h2 {
        font-size: 28px;
    }

    .content h4 {
        font-size: 20px;
    }

    .content p {
        font-size: 18px;
        max-width: 800px;
    }
}
