body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden; /* ensures video doesn't overflow */
}

    /* Video background styling */
    .hero video.hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    /* Overlay on top of video */
    .hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 0;
    }

    .hero .content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

.btn {
    background-color: #81b53e;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #6a9534;
    }

/* FEATURES */
.features {
    padding: 80px 20px;
    text-align: center;
    background: #f8f8f8;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .feature-card h3 {
        margin: 15px 0 5px;
        color: #4a7023;
    }

    .feature-card p {
        padding: 0 15px 20px;
        color: #555;
    }

/* CTA SECTION */
.cta {
    background: #81b53e;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .cta p {
        margin-bottom: 20px;
    }

/* FOOTER */
.landing-footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
