﻿:root {
    --ff-green: #1f9b57; /* primary green */
    --ff-green-dark: #167541;
    --ff-bg-light: #f7faf8;
}

.hero-ff {
    position: relative;
    background: linear-gradient(135deg, #e9f7ef, #ffffff);
    padding: 200px 20px 40px 20px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 360px;
}

    .hero-text h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 15px;
        color: #123024;
    }

    .hero-text p {
        font-size: 1.05rem;
        margin-bottom: 20px;
        color: #355347;
    }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-ff {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-ff-primary {
    background-color: var(--ff-green);
    color: #ffffff;
    border-color: var(--ff-green);
}

    .btn-ff-primary:hover {
        background-color: var(--ff-green-dark);
        border-color: var(--ff-green-dark);
    }

.btn-ff-ghost {
    background-color: #ffffff;
    color: var(--ff-green);
    border-color: var(--ff-green);
}

    .btn-ff-ghost:hover {
        background-color: #f0f9f3;
    }

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    font-size: 0.95rem;
    color: #325244;
}

    .hero-highlights li {
        margin-bottom: 4px;
    }

.hero-image {
    flex: 1 1 320px;
    text-align: center;
}

    .hero-image img {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

/* Mobile */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-highlights {
        text-align: left;
        margin: 10px auto 0;
        max-width: 320px;
    }
}
