* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #14532d;
    --secondary: #4ade80;
    --accent: #fcd34d;
    --beige: #f5f0e6;
    --dark: #052e16;
    --light: #faf9f6;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.75;
    color: #333;
    background: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 0.95rem;
}

/* Navigation */
nav {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 20px;
}

.logo {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.9rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero - New Beautiful Design */
.hero {
    height: 50vh;
    min-height: 200px;
    background: linear-gradient(45deg, rgba(20, 83, 45, 0.75), rgba(5, 46, 22, 0.65)),
                url('https://source.unsplash.com/random/2000x1300/?kenyan-farmland-golden-hour') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, var(--light));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-content h1 {
    font-size: 3.6rem;
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.35rem;
    color: #f1f5f9;
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 5.5rem 0;
}

.bg-light {
    background: var(--beige);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(20, 83, 45, 0.15);
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s;
}

.cta-button:hover {
    background: #166534;
    transform: scale(1.06);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: 0.4s;
    }
    .nav-links.active { left: 0; }
    .mobile-menu { display: block; }
    .hero-content h1 { font-size: 2.7rem; }
}