:root {
    --green-dark: #1e3d32;
    --green-medium: #2f594b;
    --cream: #f7f5ef;
    --text-dark: #1a1a1a;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
}

h1,
h2,
h3 {
    font-weight: 600;
}

body {
    display: flex;
    background-color: var(--cream);
    color: var(--text-dark);
}

/* Navigation */
nav {
    width: 220px;
    height: 100vh;
    background-color: var(--green-dark);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

nav h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--cream);
    text-decoration: underline;
}

/* Main Content */
main {
    margin-left: 220px;
    padding: 40px;
    flex-grow: 1;
}

section {
    margin-bottom: 80px;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--green-dark);
    display: inline-block;
    padding-bottom: 5px;
}

/* Councils */
.council-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.council-card {
    background-color: white;
    padding: 20px;
    border-left: 6px solid var(--green-medium);
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.team-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #ccc;
    font-size: 0.95em;
    color: #555;
}

footer a {
    color: var(--green-dark);
    text-decoration: none;
    margin: 0 8px;
}

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