#hp-benefits-section {
    --fg: #007ba4; /* dark text */
    --muted: #6b7b86; /* body text */
    --brand: #007ba4; /* teal accent (icons/lines) */
    --border: #dfe6ea; /* card border */
    --panel: #fff; /* card bg */
    --cta: #e58b4a; /* orange button */
    --cta-hover: #d57833;
    color: var(--fg);
    max-width: 1140px;
    margin: clamp(20px, 4vw, 56px) auto;
    padding: 0 clamp(10px, 3vw, 20px);
}

    /* Heading + subtitle */
    #hp-benefits-section > div:first-of-type {
        text-align: center;
        margin-bottom: 35px;
    }

    #hp-benefits-section h2 {
        color: #007ba4;
        font-size: 1.8rem;
        letter-spacing: 3px;
        font-weight: normal;
        text-align: center;
    }

    #hp-benefits-section > div:first-of-type > p {
        margin: 0;
        color: var(--muted);
        font-size: 1.2rem;
    }

    /* Grid (4 across like the screenshot) */
    #hp-benefits-section .benefits-flex-4C {
        display: grid;
        gap: clamp(16px, 2.4vw, 28px);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 13px;
    }

@media (max-width: 1100px) {
    #hp-benefits-section .benefits-flex-4C {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    #hp-benefits-section .benefits-flex-4C {
        grid-template-columns: repeat(2, 1fr);
    }

    #hp-benefits-section h2 {
        letter-spacing: .3px;
        line-height: 1.3;
    }
}

@media (max-width: 560px) {
    #hp-benefits-section .benefits-flex-4C {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #hp-benefits-section h2 {
        font-weight: 700;
        letter-spacing: 0.3px;
        line-height: 1.25;
    }

    #hp-benefits-section > div:first-of-type > p {
        font-size: 0.95rem;
        line-height: 1.55;
    }
}

/* Card */
#hp-benefits-section .benefits-box {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 20px 20px;
    text-align: center;
    transition: border-color .2s ease, transform .2s ease;
}

    #hp-benefits-section .benefits-box:hover {
        border-color: #cfd7dc;
        transform: translateY(-2px);
    }

/* Icon + decorative lines */
#hp-benefits-section .benefits-icon-container {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    position: relative;
    display: grid;
    place-items: center;
}

    #hp-benefits-section .benefits-icon-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* lines to left/right of icon */
    #hp-benefits-section .benefits-icon-container::before,
    #hp-benefits-section .benefits-icon-container::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 42%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0, var(--brand) 40%, var(--brand) 60%, transparent 100%);
        opacity: .8;
    }

    #hp-benefits-section .benefits-icon-container::before {
        left: -46%;
    }

    #hp-benefits-section .benefits-icon-container::after {
        right: -46%;
    }

/* Title + copy */
#hp-benefits-section .benefits-box-info h5 {
    margin: 6px 0 8px;
    font-size: 13px;
    letter-spacing: .9px;
    font-weight: 800;
    color: #007ba4;
}

#hp-benefits-section .benefits-box-info p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

/* CTA */
#hp-benefits-section > div:last-of-type {
    text-align: center;
    margin-top: clamp(18px, 3.4vw, 30px);
}

#hp-benefits-section button {
    background-color: #ef9645;
    border: none;
    color: #fff;
    width: 240px;
    height: 60px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all .3s;
    text-align: center;
}

    #hp-benefits-section button:hover {
        background: var(--cta-hover);
        transform: translateY(-1px);
    }

    #hp-benefits-section button a {
        color: inherit;
        text-decoration: none;
        padding: 0 2px;
    }

    /* Keyboard focus */
    #hp-benefits-section a:focus-visible,
    #hp-benefits-section button:focus-visible {
        outline: 3px solid rgba(14,165,233,.5);
        outline-offset: 3px;
    }

/* Reduce motion friendly */
@media (prefers-reduced-motion: no-preference) {
    #hp-benefits-section {
        animation: benefitsIn .3s ease-out both;
    }

    @keyframes benefitsIn {
        from {
            opacity: 0;
            transform: translateY(6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
