.hero {
    min-height: 620px;
    background:
        linear-gradient(rgba(20, 61, 40, 0.72), rgba(20, 61, 40, 0.72)),
        url('../images/slider/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    max-width: 760px;
}

.hero-content span {
    color: var(--secondary);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: -55px;
    position: relative;
    z-index: 2;
}

.hero-info-box {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.hero-info-box h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.hero-info-box p {
    color: var(--gray);
    font-size: 15px;
}