.hero {
    position: relative; 
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 22px;
}

.cta-btn {
    background: #fff;
    color: #2e7d32;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    transition: background 0.2s, color 0.2s;
}

    .cta-btn:hover {
        background: #2e7d32;
        color: #fff;
    }
