* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    background: #f5f7fa;
    color: #1e2a3a;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #0b1a33;
    color: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header nav a {
    color: #c8d6e5;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.header nav a:hover {
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, #0b1a33 0%, #1a3a6b 100%);
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    color: #b0c4de;
    max-width: 600px;
    margin: 0 auto 24px;
}

.feature-text {
    font-size: 16px;
    color: #ffd700 !important;
    max-width: 600px;
    margin: -10px auto 20px !important;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tags span {
    background: rgba(255,255,255,0.12);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.principles {
    padding: 60px 0;
    background: #fff;
}

.principles h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #0b1a33;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: #f8faff;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e8edf5;
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(11, 26, 51, 0.08);
}

.card .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #0b1a33;
}

.card p {
    font-size: 14px;
    color: #5a6e85;
    line-height: 1.5;
}

.products {
    padding: 60px 0;
    background: #f5f7fa;
}

.products h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 36px;
    color: #0b1a33;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.25s;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.product-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #0b1a33;
}

.product-card ul {
    list-style: none;
    padding: 0;
}

.product-card ul li {
    padding: 4px 0;
    font-size: 14px;
    color: #3d5269;
    border-bottom: 1px dashed #ecf0f5;
}

.product-card ul li:last-child {
    border-bottom: none;
}

.notice {
    text-align: center;
    font-size: 13px;
    color: #7a8fa5;
    margin-top: 30px;
    background: #eef2f7;
    padding: 12px;
    border-radius: 10px;
}

/* ====== 대출 대상 ====== */
.target-section {
    padding: 50px 0;
    background: #fff;
}

.target-section h2 {
    text-align: center !important;  /* ✅ 강제 중앙 정렬 */
    font-size: 26px;
    margin-bottom: 32px;
    color: #0b1a33;
    display: block;
    width: 100%;
}

.target-content {
    max-width: 780px;
    margin: 0 auto;
    background: #f8faff;
    padding: 40px 50px;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    text-align: center;
}

.target-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-content ul li {
    padding: 6px 0;
    font-size: 15px;
    color: #1e2a3a;
    line-height: 1.6;
}

.target-content ul li:first-child {
    font-weight: 600;
    color: #0b1a33;
}

.info-table {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
}

.info-table tr {
    border-bottom: 1px solid #e8edf5;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.8;
}

.info-table .label {
    font-weight: 600;
    color: #0b1a33;
    width: 35%;
    white-space: nowrap;
}

.info-table .value {
    color: #1e2a3a;
    width: 65%;
}

/* ====== 대출 대상 리스트 (중앙 정렬) ====== */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e8edf5;
    gap: 20px;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list .label {
    font-weight: 600;
    color: #0b1a33;
    flex-shrink: 0;
    min-width: 120px;
}

.info-list .value {
    color: #1e2a3a;
    text-align: right;
    flex: 1;
}

.calculator {
    padding: 60px 0;
    background: #fff;
}

.calculator h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 32px;
    color: #0b1a33;
}

.calc-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: #f8faff;
    padding: 36px 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.calc-row {
    margin-bottom: 28px;
}

.calc-row label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    color: #1e2a3a;
}

.calc-row input[type="range"] {
    width: 100%;
    height: 6px;
    background: #d0d9e8;
    border-radius: 10px;
    outline: none;
}

.amount-display {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0b1a33;
    margin-top: 10px;
}

.period-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.period-btns button {
    flex: 1;
    min-width: 60px;
    padding: 10px 0;
    border: 2px solid #d0d9e8;
    background: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #3d5269;
    cursor: pointer;
    transition: all 0.2s;
}

.period-btns button:hover {
    border-color: #0b1a33;
    color: #0b1a33;
}

.period-btns button.active {
    background: #0b1a33;
    border-color: #0b1a33;
    color: #fff;
}

.calc-result {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin-top: 10px;
}

.calc-result p {
    font-size: 15px;
    color: #3d5269;
}

.calc-result p:first-child {
    font-size: 18px;
}

.calc-result strong {
    font-size: 24px;
    color: #0b1a33;
}

.calc-result span {
    font-weight: 600;
    color: #1e2a3a;
}

.apply-form {
    padding: 60px 0;
    background: #f5f7fa;
}

.apply-form h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 32px;
    color: #0b1a33;
}

.apply-form form {
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    padding: 36px 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #1e2a3a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d9e8;
    border-radius: 10px;
    font-size: 15px;
    background: #fafcff;
    transition: border 0.25s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0b1a33;
    outline: none;
    background: #fff;
}

.btn-submit {
    width: 100%;
    padding: 14px 0;
    background: #0b1a33;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a3a6b;
}

.status-check {
    padding: 60px 0;
    background: #fff;
}

.status-check h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 28px;
    color: #0b1a33;
}

.status-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.status-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #d0d9e8;
    border-radius: 10px;
    font-size: 15px;
}

.status-form button {
    padding: 12px 28px;
    background: #0b1a33;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

.status-form button:hover {
    background: #1a3a6b;
}

#statusResult {
    max-width: 480px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 15px;
    color: #3d5269;
}

.footer {
    background: #0b1a33;
    color: #8aa0b9;
    padding: 32px 0;
    text-align: center;
    font-size: 14px;
}

.footer p {
    margin-bottom: 4px;
}

.footer p:last-child {
    margin-top: 10px;
    color: #5a7490;
    font-size: 13px;
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero p {
        font-size: 16px;
    }
    .calc-wrap {
        padding: 24px 18px;
    }
    .period-btns button {
        font-size: 12px;
        padding: 8px 0;
        min-width: 48px;
    }
    .apply-form form {
        padding: 24px 18px;
    }
    .calc-result strong {
        font-size: 20px;
    }
    .header nav a {
        margin-left: 14px;
        font-size: 13px;
    }
    .target-content {
        padding: 20px 24px;
    }
    .target-content ul li {
        font-size: 14px;
    }
    .info-table td {
        padding: 10px 6px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .tags {
        flex-direction: column;
        align-items: center;
    }
    .hero h1 {
        font-size: 22px;
    }
    .amount-display {
        font-size: 22px;
    }
    .period-btns {
        gap: 6px;
    }
    .period-btns button {
        font-size: 11px;
        padding: 6px 0;
        min-width: 40px;
    }
    .status-form {
        flex-direction: column;
    }
    .logo {
        font-size: 18px;
    }
    .info-table td {
        display: block;
        padding: 6px 8px;
    }
    .info-table .label {
        width: 100%;
        font-weight: 700;
        padding-bottom: 0;
    }
    .info-table .value {
        width: 100%;
        padding-top: 2px;
        padding-bottom: 10px;
    }
    .info-table tr {
        display: block;
        border-bottom: 1px solid #eef2f7;
        padding: 4px 0;
    }
}