/* HERO SECTION */
.hero {
    background: #e8ded1;
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* reduced */
    padding: 0 20px; /* reduced from 40px */
}

.hero-left {
    flex: 0 0 65%;
    max-width: 65%;
}

.hero-right {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-right img {
    max-width: 330px;
    margin-top: 40px;
}

/* ELEMENTS */
.hero-badge {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    background: #e6efe6;
    color: #2f612f;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
    border: 1px solid #cfdccf;
}

.hero-heading {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 24px;
}

.highlight {
    color: #b56700;
}

.hero-subtext {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 32px;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

.hero-cta {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    background: #3f9142; /* richer green */
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 3px 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.hero-cta:hover {
    background: #367f38;
    transform: translateY(-1px);
}

.hero-cta:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}