/* Why Choose Primo Reg Section CSS */

.why-choose-section {
    padding: 80px 0;
    background: #F5F5F5;
}

.why-choose-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    border: none;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

.why-choose-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why-choose-card {
    background: #F5F5F5;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 40px 25px;
    flex: 1;
    min-width: 240px;
    max-width: 270px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--pr-yellow);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #FFCC001A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper i {
    font-size: 24px;
    color: #000000;
}

.why-choose-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-choose-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .why-choose-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .why-choose-card {
        min-width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }
}
