/* About Section */
.about {
    padding: 5rem 0;
}

.about .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.about .section-header .section-title {
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-features .feature:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.about-features .feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-features .feature span {
    font-weight: 500;
    color: var(--text-color);
}

.about-image {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        gap: 3rem;
    }
    
    .about-text .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .about .section-title {
        font-size: 1.5rem;
    }
    
    .about .view-all-link {
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text .section-title {
        font-size: 1.75rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-text .section-title {
        font-size: 1.5rem;
    }
    
    .about-features .feature {
        padding: 0.75rem;
    }
}
