/* Why Choose Us Section Component - BEM */
/* Mobile-first: base styles for mobile */

.why-us {
    padding: var(--space-3xl) var(--space-md);
    background-color: var(--white);
}

.why-us__container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us__title {
    text-align: center;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--space-2xl);
    font-weight: var(--fw-bold);
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.why-us__item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.why-us__item-title {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    font-weight: var(--fw-bold);
}

.why-us__item-description {
    color: var(--gray-dark);
    font-size: 0.875rem;
    line-height: 1.5;
}

.why-us__item-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.why-us__item-icon svg {
    width: 32px;
    height: 32px;
}

.why-us__item-content {
    flex: 1;
}
