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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f9fbf7;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.section-padding {
    padding: 70px 0;
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 99;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a1e;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2d5a1e;
    font-weight: 500;
}

.hero {
    background: linear-gradient(rgba(45, 90, 30, 0.8), rgba(45, 90, 30, 0.8)),
        url('https://picsum.photos/id/156/1920/1080') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2d5a1e;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #f0f8ec;
}

.gallery-section {
    background: white;
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    color: #2d5a1e;
    margin-bottom: 10px;
}

.gallery-desc {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

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

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.emoji {
    font-size: 45px;
    display: block;
    margin-bottom: 18px;
}

.card h2 {
    color: #2d5a1e;
    margin-bottom: 15px;
}

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

    .nav-flex {
        flex-direction: column;
        gap: 15px;
    }
}