/* Why Choose Us Section */
.why-choose-us-section {
    width: 100%;
    color: rgb(var(--color-text));
    background: rgb(var(--color-background));
}

.why-choose-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.why-choose-us-title {
    text-align: center;
    margin: 0 0 48px 0;
}

/* Grid */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
    width: 100%;
}

/* Feature Item */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img,
.feature-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    color: currentColor;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose-us-title {
        margin-bottom: 36px;
    }

    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-choose-us-grid {
        gap: 40px 24px;
    }
}

