body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #222;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.btn-nav {
    background: #2e7d32;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Hero */
.hero {
    background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
}

/* Sections */
.section {
    padding: 60px 0;
}

.dark {
    background: #2e7d32;
    color: white;
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px;
}

/* Cards */
.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* CTA */
.cta {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* Form */
.form input, .form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

.form button {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px;
}

.success {
    color: green;
}

/* Mobile */
.menu-toggle {
    display: none;
}

@media(max-width:768px){
    nav {
        display:none;
        flex-direction: column;
    }

    nav.active {
        display:flex;
    }

    .menu-toggle {
        display:block;
        cursor:pointer;
    }

    .hero h1 {
        font-size: 28px;
    }
	
.map {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}	
}