/* About Page */
.about-page {
    min-height: 100vh;
    padding-top: 85px;
    background-color: var(--warm-white);
}

.about-container {
    max-width: 100%;
    margin: 0;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: calc(100vh - 85px);
}

.about-title {
    font-size: 7rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.1;
}

.about-content {
    width: 100%;
}

.about-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 2rem;
    font-weight: 200;
    line-height: 2;
    color: var(--text-primary);
    text-align: left;
    margin: 0;
}

.about-text.en-text {
    font-family: "futura-pt", sans-serif;
    font-weight: 300;
}

/* 반응형 */
@media (max-width: 768px) {
    .about-page {
        padding-top: 75px;
    }

    .about-container {
        padding: 2rem 1.5rem;
        min-height: calc(100vh - 75px);
    }

    .about-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .about-text {
        font-size: 1.2rem;
        font-weight: 200;
        line-height: 1.9;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 1.5rem 1rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1rem;
        font-weight: 200;
        line-height: 1.8;
    }
}
