.eq-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #051a0c;
}
.eq-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: .16;
}
.eq-hero-title {
    position: relative;
    z-index: 2;
    text-align: center;
}
.eq-hero-title h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #F5C518;
    margin: 0;
    line-height: 1.05;
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.eq-hero-title p {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 12px 0 0;
}
.eq-body {
    background: #fff;
    padding-bottom: 80px;
}
.eq-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 0;
}
.eq-section-title {
    text-align: left;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 18px;
}
.eq-copy {
    color: #3b4755;
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 22px;
}
.eq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}
.eq-card {
    background: #fbfbfb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 25, 40, 0.08);
    padding: 0;
}
.eq-card img {
    width: 100%;
    display: block;
}
.eq-card-body {
    padding: 24px;
}
.eq-card-title {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0d3d22;
}
.eq-card-text {
    margin: 0;
    color: #4a5664;
    line-height: 1.8;
    font-size: .98rem;
}
@media (max-width: 900px) {
    .eq-grid {
        grid-template-columns: 1fr;
    }
}
