/* 타이포그래피 시스템 */
:root {
    /* 기존 변수들 유지 */
}

/* ... 다른 스타일들 ... */

/* h2 태그 스타일 강화 */
h2 {
    font-size: 36px;  /* 더 큰 크기로 변경 */
    font-weight: 800; /* 더 굵게 변경 (extrabold) */
    color: var(--color-primary);
    margin-bottom: 1em;
    text-align: center;
}

/* 기존 타이틀 스타일은 유지 */
.title-style {
    font-size: 24px;
    font-weight: normal;
    color: #1e6cde;
    text-align: center;
    margin-bottom: 30px;
}

.title-style2 {
    font-size: 40px;
    font-weight: bold;
    color: #1e6cde;
    text-align: center;
    margin-bottom: 30px;
}

/* ... 나머지 스타일들 ... */

/* 활성화 메뉴 스타일 */
.active-menu {
    background-color: #1e6cde;
    color: white;
    font-weight: bold;
}

/* 가운데 정렬 스타일 */
.centered-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* 메뉴 가운데 정렬 */
.menu-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px; /* 버튼 사이의 간격 */
}

/* 메뉴 버튼 스타일 개선 */
.menu-container button {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #1e6cde;
    background-color: white;
    color: #1e6cde;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-container button:hover {
    background-color: #e6f0ff;
}

.centered-content .main-form-table {
    margin: 0 auto;
    width: 100%;
}

.centered-content .label-cell {
    font-size: 20px;
    font-weight: normal;
    color: #323232;
    text-align: right;
    padding-right: 15px;
    width: 40%;
}

.centered-content .input-cell {
    text-align: left;
    width: 60%;
}

.centered-content input {
    font-size: 30px;
    font-color: #323232;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.centered-content .button-table {
    margin: 20px auto;
    width: 100%;
    text-align: center;
}

.centered-content .button-table td {
    text-align: center;
}

.centered-content .form-submit {
    width: 50%;
    margin: 0 auto;
    /* display: block; - 제거 */
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #1e6cde;
    background-color: #1e6cde;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: normal;
    text-align: center;
    font-size: 20px;  
}

.centered-content .form-submit:hover {
    background-color: #165bb8;
}

/* 반응형에서도 h2 크기 유지 */
@media (max-width: 768px) {
    h2 {
        font-size: 32px; /* 모바일에서도 충분히 크게 */
    }
    /* ... 다른 반응형 스타일들 ... */
}