/* ===== HEAD ===== */
.info-head {margin-bottom: 28px;text-align: center;}
.info-head-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #1255a4;
    margin-bottom: 6px;
}
.info-head-title {
    font-size: 26px;
    font-weight: 900;
    color: #0d1b3e;
    margin: 0 0 8px;
}
.info-head-date { font-size: 12px; color: #aaa; margin: 0; }

/* 정책 인트로 */
.info-policy-intro {
    background: #f5f8ff;
    border-left: 4px solid #1255a4;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* ===== 목차 ===== */
.info-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
    background: #f8fafd;
    border: 1.5px solid #e4eaf5;
    border-radius: 12px;
    margin-bottom: 32px;
}
.info-toc a {
    font-size: 12.5px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid #e4eaf5;
    background: #fff;
    transition: all 0.2s;
    white-space: nowrap;
}
.info-toc a:hover,
.info-toc a.active {
    background: #1255a4;
    border-color: #1255a4;
    color: #fff;
}

/* ===== 섹션 ===== */
.info-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f4fb;
}
.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.info-sec-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.info-sec-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1255a4;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.info-sec-title {
    font-size: 18px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 0;
}
.info-sec-body {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}
.info-sec-body > p { margin-bottom: 14px; }

/* 리스트 */
.info-list {
    padding: 0 0 0 20px;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.info-list li { color: #555; line-height: 1.75; }
.info-list-caution li { padding-left: 4px; }
.info-list-caution li::marker { color: #e53e3e; }

/* 스텝 */
.info-step-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.info-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8fafd;
    border: 1.5px solid #e4eaf5;
    border-radius: 12px;
    padding: 14px 16px;
    flex: 1;
    min-width: 140px;
}
.info-step-num {
    width: 28px;
    height: 28px;
    background: #1255a4;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-step strong { display: block; font-size: 13px; color: #0d1b3e; margin-bottom: 3px; }
.info-step p { font-size: 12px; color: #aaa; margin: 0; }
.info-step-arrow { color: #c5d7f5; flex-shrink: 0; }
.info-step-arrow svg { width: 20px; height: 20px; }

/* 박스 */
.info-box {
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.75;
    margin-top: 14px;
}
.info-box-blue {
    background: #eef3fc;
    border: 1px solid #c5d7f5;
    color: #1255a4;
}
.info-box-gray {
    background: #f8fafd;
    border: 1px solid #e4eaf5;
    color: #666;
}
.info-box-red {
    background: #fff5f5;
    border: 1px solid #fdc5c5;
    color: #c53030;
}

/* 테이블 */
.info-table-wrap {
    overflow-x: auto;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1.5px solid #e4eaf5;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 420px;
}
.info-table thead tr {
    background: #f0f4fb;
    border-bottom: 1.5px solid #dde6f5;
}
.info-table thead th {
    padding: 11px 16px;
    text-align: left;
    font-weight: 700;
    color: #0d1b3e;
    white-space: nowrap;
}
.info-table tbody tr { border-bottom: 1px solid #f0f4fb; }
.info-table tbody tr:last-child { border-bottom: none; }
.info-table tbody td {
    padding: 11px 16px;
    color: #555;
    line-height: 1.6;
}
.info-td-red { color: #e53e3e; font-weight: 700; }

/* 고객센터 그리드 */
.info-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.info-contact-grid-2 { grid-template-columns: repeat(2, 1fr); }
.info-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafd;
    border: 1.5px solid #e4eaf5;
    border-radius: 12px;
    padding: 18px 16px;
}
.info-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef3fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1255a4;
}
.info-contact-icon svg { width: 20px; height: 20px; }
.info-contact-item strong {
    display: block;
    font-size: 13px;
    color: #0d1b3e;
    margin-bottom: 5px;
}
.info-contact-item p {
    font-size: 15px;
    font-weight: 700;
    color: #1255a4;
    margin: 0 0 3px;
}
.info-contact-item span,
.info-contact-item a {
    font-size: 12px;
    color: #aaa;
    text-decoration: none;
}
.info-contact-item a:hover { color: #1255a4; }

/* ===== 반응형 ===== */
@media (max-width: 900px) {
    .info-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .info-step-wrap { flex-direction: column; align-items: stretch; }
    .info-step-arrow { transform: rotate(90deg); align-self: center; }
    .info-step { min-width: auto; }
    .info-contact-grid,
    .info-contact-grid-2 { grid-template-columns: 1fr; }
    .info-sec-title { font-size: 16px; }
    .info-head-title { font-size: 22px; }
}
@media (max-width: 480px) {
    .info-toc { padding: 12px; gap: 6px; }
    .info-toc a { font-size: 11.5px; padding: 4px 10px; }
    .info-policy-intro { font-size: 13px; padding: 14px 16px; }
    .info-sec-num { font-size: 11px; padding: 3px 10px; }
}
