.wcu-1b1490d3-container {
    padding: 40px 0;
    text-align: center;
}

.wcu-1b1490d3-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0B3D91;
}

.wcu-1b1490d3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.wcu-1b1490d3-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f3f4f6;
}

.wcu-1b1490d3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.wcu-1b1490d3-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F4F6;
}

.wcu-1b1490d3-icon i {
    font-size: 28px;
    color: #0B3D91;
}

.wcu-1b1490d3-icon svg {
    width: 28px;
    height: 28px;
    fill: #0B3D91;
}

.wcu-1b1490d3-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .wcu-1b1490d3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .wcu-1b1490d3-grid {
        grid-template-columns: 1fr;
    }
}
