/* About Section */
.about-section {
    padding: var(--spacing-xxl) 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

/* Layout Options */
.about-layout-image-right .about-image-col {
    order: 2;
}

.about-layout-image-right .about-content-col {
    order: 1;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-features {
    margin: var(--spacing-md) 0;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(253, 95, 23, 0.1);
    /* Primary color with opacity */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.feature-title {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.about-btn {
    margin-top: var(--spacing-md);
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Reset order on mobile so image is always first (or as per design preference) */
    .about-layout-image-right .about-image-col,
    .about-layout-image-right .about-content-col {
        order: unset;
    }

    .about-content-col {
        padding-left: 0;
    }

    .about-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: var(--spacing-md) 0;
    }

    .about-feature-item {
        gap: 15px;
    }
}