/* GLOBAL STYLING */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #f9faf7;
    color: #333;
}

header {
    background: #1b5e20;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background: #2e7d32;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

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

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

h1 {
    color: #1b5e20;
    margin-top: 30px;
}

h2 {
    color: #2e7d32;
    margin-top: 25px;
}

h3 {
    color: #33691e;
}

img {
    width: 50%;
    max-width: 600px;
    height: 50%;
    
    border-radius: 6px;
}

ul {
    margin-left: 20px;
}

.highlight {
    background: #e8f5e9;
    padding: 15px;
    border-left: 5px solid #2e7d32;
    margin: 20px 0;
}

footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}