/* About Page Styles */
.about-container {
    width: 100%;
    min-height: 80vh;
    padding: 160px 20px 80px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: fadeIn 0.8s ease forwards;
}

.about-content {
    max-width: 680px;
    width: 100%;
}

.about-header {
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--color-text-main);
    text-transform: uppercase;
}

.about-text {
    font-family: var(--font-secondary);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    color: var(--color-text-dim);
    white-space: pre-wrap;
    /* Preserve formatting */
}

.about-text p {
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--color-text-main);
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .about-container {
        padding-top: 120px;
    }
}