/* Why Choose Section */
.why-choose-section {
    padding: 4rem 2rem;
    background-color: white;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.why-choose-header p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 0.75rem;
    background-color: #f1f5f9;
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: black;
}

.why-choose-card p {
    color: var(--light-text);
    font-size: 16.2px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(57, 56, 56);
}
