* {
    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;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.contact-form-card, .contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}
.contact-form-card h2, .contact-info-card h2 {
    margin-bottom: 1.2rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-family: inherit;
}
.btn-primary {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
}
.btn-secondary {
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.info-item i {
    font-size: 1.3rem;
    color: #2e7d32;
    width: 30px;
}
.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}
.social-links a {
    background: #e8f5e9;
    color: #0f3b1f;
    padding: 8px 12px;
    border-radius: 50%;
    transition: background 0.2s;
}
.social-links a:hover {
    background: #c8e6c9;
}
.map-section {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin-top: 1rem;
}
.error-message, .success-message {
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.error-message { background: #ffe6e6; color: #c62828; }
.success-message { background: #e6ffe6; color: #2e7d32; }
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; }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}