/* Why Choose Us section styles */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #8B7355;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--secondary-gray);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reason-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    color: #8b7355;
}

.reason-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.reason-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-gray);
    margin-bottom: 15px;
}

.reason-card p {
    color: var(--secondary-gray);
    line-height: 1.6;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .reason-card {
        padding: 25px;
    }
}
