/* Why Choose Us Section Styles */
.why-choose-us-section {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 169, 182, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 44, 82, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.wcu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wcu-header h2 {
    font-size: 2.5rem;
    color: var(--dark, #171e37);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.wcu-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary, #e72c52);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wcu-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(44, 169, 182, 0.2);
}

.wcu-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(44, 169, 182, 0.1) 0%, rgba(44, 169, 182, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary, #2ca9b6);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.wcu-card:hover .wcu-icon-wrapper {
    background: var(--secondary, #2ca9b6);
    color: #ffffff;
    transform: scale(1.1);
}

.wcu-card h3 {
    font-size: 1.25rem;
    color: var(--dark, #171e37);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wcu-card p {
    color: var(--text-light, #666666);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wcu-header h2 {
        font-size: 2rem;
    }

    .why-choose-us-section {
        padding: 4rem 0;
    }

    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}