.Hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.Hero .desc {
    font-size: 16px;
    max-width: 600px;
}

@media (max-width: 768px) {
    .Hero {
        min-height: 70vh;
    }
    .cz-primary-card {
        flex-direction: column;
        text-align: center;
    }

    .cz-primary-btn {
        margin-left: 0;
    }
}


.what-we-offer {
    background:
        radial-gradient(circle at 10% 10%, rgba(255,102,0,0.08), transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(31,122,63,0.08), transparent 50%),
        #eef3ef; /* darker than card */
}



.offer-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 24px 22px 28px;
    height: 100%;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Accent line */
.offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff6600, #1f7a3f);
    opacity: 0.8;
}

.offer-card img {
    width: calc(100% - 16px);
    margin: 8px auto 18px;
    border-radius: 12px;
    display: block;
    background: #f4f6f4;
    padding: 6px;
}



.offer-card h3 {
    font-size: 19px;
    margin-top: 6px;
    font-weight: 700;
    color: #1f7a3f;
    margin-bottom: 8px;
}

.offer-card p {
    font-size: 15px;
    margin-top: 6px;
    color: #555;
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}


.offer-card:hover::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 10px auto 0;
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,102,0,0.12), transparent 55%);
    pointer-events: none;
}
