.about {
    background: var(--bg-primary);
    /* The parent .diagonal-section handles the skew background if needed */
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

.about h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about p {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item h4::before {
    content: '→';
    color: var(--primary);
    font-weight: 400;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}