/* ================================================================== */
/* == 정보 페이지 전용 스타일 (about, privacy 등) == */
/* ================================================================== */

.container {
    max-width: 800px; /* 정보 페이지는 좁은 너비로 가독성 확보 */
}

.info-page-content {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 1.1em;
    line-height: 1.8;
}

.info-page-content h1 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.info-page-content h2 {
    font-size: 1.6em;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid #FFDE59;
    padding-left: 15px;
}

.info-page-content p {
    margin-bottom: 15px;
    color: #ddd;
}

.info-page-content a {
    color: #FFDE59;
    text-decoration: none;
    font-weight: bold;
}

.info-page-content a:hover {
    text-decoration: underline;
}

.info-page-content ul,
.info-page-content ol {
    padding-left: 25px;
    color: #ddd;
}