.benefits-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.benefits-header {
    padding: 0 30px;
    margin-bottom: 10px;
    display: inline-block;
}

.benefits-header h2 {
    font-size: 18px;
    font-weight: 500;
    color: #314B70;
    margin-bottom: 18px;
}

.benefits-header p {
    font-size: 16px;
    color: #333333;
    line-height: 36px;
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.benefit-card {
    background: #F0F3F7;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(80, 90, 120, 0.06);
    padding: 10px 35px 32px 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    text-decoration: none;
}

.benefit-card:hover {
    box-shadow: 0 6px 24px rgba(80, 90, 120, 0.13);
    text-decoration: none !important;
}

.benefit-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.benefit-card h2 {
    font-size: 24px;
    font-weight: 500;
    color: #1E355E;
    margin: -10px 0 14px 0;
    text-decoration: none;
}

.benefit-card p {
    font-size: 16px;
    color: #333333;
    margin: 0;
    line-height: 32px;
    font-weight: 400;
    text-decoration: none;
}

@media (min-width: 768px) {
    .benefits-header h2 {
        font-size: 24px;
    }

    .benefits-header p {
        font-size: 18px;
    }

    .benefits-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .benefit-card {
        width: 345px;
    }

    .benefit-icon {
        width: 200px;
        height: 200px;
    }

    .benefit-card h2 {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .benefits-header h2 {
        font-size: 52px;
        letter-spacing: 1px;
    }
}