.wcu-container-c8a0b80b {
    background-color: #ffffff;
    padding: 90px 0;
    width: 100%;
}

.wcu-inner-c8a0b80b {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wcu-header-c8a0b80b {
    text-align: center;
    margin-bottom: 50px;
}

.wcu-subtitle-c8a0b80b {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ff3b3b;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.wcu-title-c8a0b80b {
    font-size: 42px;
    font-weight: 700;
    color: #1f2d5c;
    margin: 0 0 20px;
}

.wcu-divider-c8a0b80b {
    width: 60px;
    height: 3px;
    background-color: #ff3b3b;
    margin: 0 auto;
}

.wcu-grid-c8a0b80b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.wcu-box-c8a0b80b {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-box-c8a0b80b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff3b3b;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.wcu-box-c8a0b80b:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.wcu-box-c8a0b80b:hover::before {
    transform: scaleX(1);
}

.wcu-icon-c8a0b80b {
    width: 65px;
    height: 65px;
    background-color: #ff3b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 28px;
}

.wcu-icon-c8a0b80b svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.wcu-box-title-c8a0b80b {
    font-size: 24px;
    font-weight: 600;
    color: #1f2d5c;
    margin: 0 0 15px;
}

.wcu-box-desc-c8a0b80b {
    font-size: 16px;
    line-height: 1.9;
    color: #6c7a89;
    margin: 0;
}

.wcu-footer-c8a0b80b {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.wcu-footer-text-c8a0b80b {
    font-size: 17px;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

/* Animations */
.wcu-fade-in-c8a0b80b {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.wcu-fade-in-c8a0b80b.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wcu-grid-c8a0b80b > .wcu-box-c8a0b80b:nth-child(1) { transition-delay: 0.1s; }
.wcu-grid-c8a0b80b > .wcu-box-c8a0b80b:nth-child(2) { transition-delay: 0.2s; }
.wcu-grid-c8a0b80b > .wcu-box-c8a0b80b:nth-child(3) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .wcu-grid-c8a0b80b { grid-template-columns: repeat(2, 1fr); }
    .wcu-title-c8a0b80b { font-size: 32px; }
}

@media (max-width: 768px) {
    .wcu-grid-c8a0b80b { grid-template-columns: 1fr; }
    .wcu-container-c8a0b80b { padding: 60px 0; }
    .wcu-title-c8a0b80b { font-size: 28px; }
}