/* Why Choose Us Section - Gold & Teal Theme */

.ducphuc-why-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ducphuc-why-title {
    margin-bottom: 50px;
}

.ducphuc-why-title h2 {
    font-size: 32px;
    color: #D4AF37;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}

.ducphuc-why-title p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.ducphuc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 15px;
}

.ducphuc-why-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    border: 1px solid #f0e6cc;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ducphuc-why-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.ducphuc-why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.ducphuc-why-card h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #D4AF37;
    font-weight: 800;
}

.ducphuc-why-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

/* Specific styling for the large stat numbers */
.ducphuc-why-stat {
    font-size: 28px !important;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    .ducphuc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ducphuc-why-grid {
        grid-template-columns: 1fr;
    }
    .ducphuc-why-title h2 {
        font-size: 24px;
    }
}
