/* 메인 내부 텍스트 스타일 */
.about {
    padding-left: 20px;
    max-width: 900px;
    font-family: "Noto Sans KR", sans-serif;
    color: #333;
    position: relative;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* 표시 상태 */
.about.show {
    opacity: 1;
    transform: translateY(0);
}

.about h1 {
    margin: 2rem 0 1rem;
    border-left: 6px solid #ff735a;
    padding-left: 0.8rem;
    color: #222;
    font-size: 30px;
    font-weight: bold;
    font-family: 'DM Sans', 'Pretendard', 'Noto Sans KR', sans-serif;
}

.about h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff735a;
    margin: 5% 0 16px 0;
    text-align: left;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(254,180,123,0.08);
    font-family: 'DM Sans', 'Pretendard', 'Noto Sans KR', sans-serif;
}

.about h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000000;
    margin: 1% 0 5% 0;
    text-align: left;
    line-height: 1.6;
    font-family: 'DM Sans', 'Pretendard', 'Noto Sans KR', sans-serif;
}