.about {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: stretch;
}

.about-text h2 {
    margin-bottom: var(--spacing-lg);
}

.about-description {
    margin-bottom: var(--spacing-xl);
}

.about-description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.features-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.about-image {
    position: relative;
    height: 100%;
}

.img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about {
        padding: var(--spacing-2xl) 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .img-wrapper img {
        height: 400px;
    }
}
