    :root {
        --forest-green: #0a3d2e;
        --lime-green: #ccff00;
        --soft-white: #f8fbf9;
        --text-dark: #121212;
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin: 0;
        background-color: var(--soft-white);
        color: var(--text-dark);
        scroll-behavior: smooth;
    }

    /* --- UPDATED: Responsive Navigation --- */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 8%;
        background: white;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .logo {
        font-weight: 800;
        font-size: 1.5rem;
        letter-spacing: -1px;
        text-decoration: none;
        color: black;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        margin-left: 30px;
        font-size: 0.9rem;
        transition: 0.3s;
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--forest-green);
        border-radius: 2px;
    }

    @media (max-width: 768px) {
        .menu-toggle {
            display: flex;
        }

        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 20px 0;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
            display: none;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            margin: 15px 0;
        }
    }

    /* --- Hero Section --- */
    .hero {
        padding: 80px 8% 40px;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero h1 mark {
        background: none;
        color: var(--forest-green);
    }

    .btn-main {
        background: var(--forest-green);
        color: white;
        padding: 18px 35px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: 0.3s;
    }

    .btn-main:hover {
        transform: scale(1.05);
        background: #0e523e;
    }

    /* --- STYLES FOR EXISTING CONTENT (UNCHANGED) --- */
    .about-section {
        padding: 100px 8%;
        background: white;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-tag {
        color: var(--forest-green);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.8rem;
        margin-bottom: 10px;
        display: block;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-top: 0;
        line-height: 1.2;
    }

    .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-card {
        background: var(--soft-white);
        padding: 20px;
        border-radius: 20px;
    }

    .stat-card h4 {
        font-size: 1.5rem;
        margin: 0;
        color: var(--forest-green);
    }

    .stat-card p {
        font-size: 0.8rem;
        color: #666;
        margin: 5px 0 0;
    }

    .section-header {
        padding: 80px 8% 20px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 220px);
        gap: 20px;
        padding: 0 8% 80px;
    }

    .bento-item {
        background: white;
        padding: 30px;
        border-radius: 24px;
        box-shadow: var(--card-shadow);
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        background: #e8f5e9;
    }

    .item-2 {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }

    .item-3 {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .item-4 {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
        background: var(--forest-green);
        color: white;
    }

    .site-footer {
        background-color: #051b14;
        color: #ffffff;
        padding: 80px 8% 40px;
        border-radius: 60px 60px 0 0;
        margin-top: 50px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand h2 {
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 0 20px;
    }

    .footer-brand h2 span {
        color: var(--lime-green);
    }

    .footer-brand p {
        opacity: 0.6;
        line-height: 1.6;
        max-width: 300px;
    }

    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 25px;
        color: var(--lime-green);
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links ul li {
        margin-bottom: 15px;
    }

    .footer-links ul li a {
        color: white;
        text-decoration: none;
        opacity: 0.7;
        transition: 0.3s;
        font-size: 0.95rem;
    }

    .footer-links ul li a:hover {
        opacity: 1;
        padding-left: 5px;
        color: var(--lime-green);
    }

    .footer-bottom {
        padding-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .legal-links a {
        color: white;
        text-decoration: none;
        opacity: 0.4;
        font-size: 0.8rem;
        margin-right: 20px;
    }

    .copyright {
        opacity: 0.4;
        font-size: 0.85rem;
    }

    @media (max-width: 900px) {

        .hero,
        .about-container,
        .bento-grid {
            grid-template-columns: 1fr;
        }

        .bento-grid {
            grid-template-rows: auto;
        }

        .item-1,
        .item-2,
        .item-3,
        .item-4 {
            grid-column: auto;
            grid-row: auto;
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* Contact Layout */
    .contact-wrapper {
        padding: 80px 8%;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .info-panel h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .info-card {
        background: white;
        padding: 25px;
        border-radius: 24px;
        margin-bottom: 20px;
        box-shadow: var(--card-shadow);
        border: 1px solid #eee;
    }

    .info-card h4 {
        margin: 0 0 5px;
        color: var(--forest-green);
        font-size: 1.1rem;
    }

    .info-card p,
    .info-card a {
        margin: 0;
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
    }

    /* Form Styling */
    .form-container {
        background: white;
        padding: 50px;
        border-radius: 40px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    .input-group {
        margin-bottom: 20px;
    }

    label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--forest-green);
    }

    input,
    select,
    textarea {
        width: 100%;
        padding: 15px;
        border-radius: 12px;
        border: 1px solid #ddd;
        background: var(--soft-white);
        font-family: inherit;
        box-sizing: border-box;
        outline: none;
        transition: 0.3s;
    }

    input:focus,
    textarea:focus {
        border-color: var(--forest-green);
        background: white;
    }

    .submit-btn {
        background: var(--forest-green);
        color: white;
        width: 100%;
        padding: 18px;
        border-radius: 40px;
        border: none;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: #0e523e;
        transform: translateY(-2px);
    }

    @media (max-width: 900px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
        }

        .info-panel {
            text-align: center;
        }

        .form-container {
            padding: 30px;
        }
    }