.why-choose-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.why-choose-section .about-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-section .subtitle {
    color: #f7a442;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.why-choose-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.why-choose-section .highlighted {
    color: #f7a442;
}

.why-choose-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: #f7a442;
    box-shadow: 0 15px 35px rgba(247, 164, 66, 0.2);
}

.why-choose-card .icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7a442 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-card .icon-container i {
    font-size: 32px;
    color: white;
}

.why-choose-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-card {
        margin-bottom: 20px;
    }

    .why-choose-section h2 {
        font-size: 2rem;
    }
}