.service-new-cards .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.new-card {
    border-radius: 16px;
    box-shadow: 0px 4px 20px 0px #0000000D;
    padding: 28px 36px;

    h2 {
        color: #008DDE;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    h3 {
        margin-bottom: 8px;
    }
}

@media (max-width:1400px) {
    .service-new-cards .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width:992px) {
    .service-new-cards .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width:560px) {
    .service-new-cards .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
}

.btn-center {
    display: flex !important;
    justify-content: center !important;
    margin-top: 56px !important;
}

@media (max-width:560px) {
    .btn-center {
        margin-top: 24px !important;
    }
}

.heading-center {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 100px;
}

.bens-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;

    .ben-card {
        background-image: url('/wp-content/uploads/2026/08/Union.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 300px;
        min-height: 400px;
        gap: 8px;

        .ben-card-icon {
            height: 48px;
            width: 48px;
        }

        h3 {
            max-width: 80%;
            color: white;
        }
    }
}

@media (max-width:560px) {
    .ben-card {
        min-height: 320px !important;
    }
}