* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #f9fdf9;
    color: #1e2a1e;
    line-height: 1.6;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
header {
    background: #0f3b1f;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo h1 { font-size: 1.5rem; font-weight: 600; }
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-menu li { position: relative; }
.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.nav-menu a:hover, .nav-menu a.active { color: #a5d6a7; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f3b1f;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
}
.page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}
h1 {
    font-size: 2.5rem;
    color: #0f3b1f;
    margin-bottom: 0.5rem;
}
.subtitle {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 2rem;
}
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.campaign-card {
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.campaign-card:hover {
    transform: translateY(-5px);
}
.campaign-card i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}
.campaign-card h2 {
    margin-bottom: 0.8rem;
}
.impact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.impact .stat {
    background: #e8f5e9;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}
.policy-advocacy {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.policy-advocacy ul {
    margin: 1rem 0 1.5rem 1.5rem;
}
.progress {
    margin-top: 1rem;
}
.progress-label {
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.progress-bar {
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
}
.progress-fill {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 20px;
    width: 0%;
}
.impact-dashboard {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
}
.impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
    margin-top: 1rem;
}
.stat-box {
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 20px;
    min-width: 150px;
}
.stat-box .number {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3b1f;
    display: block;
}
.stat-box .label {
    font-size: 0.9rem;
    color: #555;
}
footer {
    background: #0f3b1f;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #0f3b1f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    .nav-menu.active { left: 0; }
}