/* 메인 제목 스타일 */
.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

/* 페이지 제목 스타일 */
.page-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

/* 메인 텍스트 스타일 */
.main-text {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1rem;
}

/* 페이지 텍스트 스타일 */
.page-text {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1rem;
}

/* 일반 단락 스타일 */
p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 제목 스타일 */
h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* 링크 스타일 */
a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* 리스트 스타일 */
ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* 강조 텍스트 */
strong, b {
    font-weight: 600;
    color: #1a1a1a;
}

em, i {
    font-style: italic;
}

/* 작은 텍스트 */
small {
    font-size: 0.875rem;
    color: #6a6a6a;
}

/* 반응형 텍스트 - 태블릿 */
@media (max-width: 1024px) {
    .main-title {
        font-size: 2.25rem;
    }
    
    .page-title {
        font-size: 1.85rem;
    }
    
    .main-text {
        font-size: 1.05rem;
    }
    
    h1 {
        font-size: 1.85rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.35rem;
    }
}

/* 반응형 텍스트 - 모바일 */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .main-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .page-text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    h4 {
        font-size: 1.125rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    h6 {
        font-size: 0.95rem;
    }
    
    ul, ol {
        padding-left: 1.5rem;
    }
    
    li {
        font-size: 0.95rem;
    }
}

/* 반응형 텍스트 - 작은 모바일 */
@media (max-width: 480px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .main-text {
        font-size: 0.95rem;
    }
    
    .page-text {
        font-size: 0.9rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    h3 {
        font-size: 1.15rem;
    }
    
    h4 {
        font-size: 1.05rem;
    }
    
    ul, ol {
        padding-left: 1.25rem;
    }
}
