* {
    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;
}
/* Main container */
.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;
}
/* Info section cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.card i {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}
.card h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.card ul {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
}
.card-img {
    width: 100%;
    border-radius: 12px;
    margin-top: 1rem;
}
.multimedia {
    background: #f1f8e9;
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
}
.multimedia iframe {
    border-radius: 12px;
    margin-top: 1rem;
}
/* Action sections */
.action-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.action-section h2 {
    margin-bottom: 1.5rem;
}
.donation-section {
    border-left: 5px solid #2e7d32;
}
.petition-section {
    border-left: 5px solid #ff9800;
}
.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.form-group {
    flex: 1;
    min-width: 200px;
}
.form-group.full-width {
    flex: 100%;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-family: inherit;
}
.btn-primary {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #1b5e20;
}
.btn-secondary {
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}
.error-message, .success-message, .info-message {
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.error-message { background: #ffe6e6; color: #c62828; }
.success-message { background: #e6ffe6; color: #2e7d32; }
.info-message { background: #e3f2fd; color: #0d47a1; }
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; }
    .card-grid { grid-template-columns: 1fr; }
}

/* Plastic Buttons */
.plastic-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.2rem 0;
}
.plastic-btn {
    flex: 1 0 auto;
    min-width: 80px;
    padding: 10px 16px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    color: white;
}
.plastic-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.pet { background: linear-gradient(135deg, #1e88e5, #0d47a1); }
.hdpe { background: linear-gradient(135deg, #43a047, #1b5e20); }
.pvc { background: linear-gradient(135deg, #ffb300, #ff8f00); }
.ldpe { background: linear-gradient(135deg, #fb8c00, #ef6c00); }
.pp { background: linear-gradient(135deg, #8e24aa, #4a148c); }
.ps { background: linear-gradient(135deg, #e53935, #b71c1c); }

/* Plastic Modal */
.plastic-modal .modal-content {
    max-width: 500px;
    text-align: left;
}
.plastic-modal-content h2 {
    color: #0f3b1f;
    margin-bottom: 1rem;
}
.plastic-modal-content p {
    margin-bottom: 0.8rem;
}