@charset "utf-8";

/* Common Part Styles */
:root {
    --main-blue: #00a0e2;
    --text-black: #222;
    --text-grey: #666;
    --bg-white: #ffffff;
    --bg-grey: #f7f7f7;
    --caution-bg: #f9f9f9;
}

.cp-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-black);
    line-height: 1.6;
    word-break: keep-all;
    background-color: var(--bg-white);
}

.cp-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cp-highlight {
    color: var(--main-blue);
    font-weight: bold;
}

/* Header Banner */
.cp-header-wrap {
    background-color: var(--main-blue);
    padding: 60px 0;
}

.cp-header-box {
    background-color: #fff;
    border-radius: 30px;
    padding: 50px 60px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cp-logo {
    height: 35px;
    margin-bottom: 25px;
}

.cp-header-box h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    color: #333;
}

.cp-header-box p {
    font-size: 22px;
    color: #555;
    font-weight: 400;
}

/* Section Common */
.cp-section {
    padding: 100px 0;
    background-color: var(--bg-grey);
    margin-bottom: 100px;
}

.cp-section-grey {
    background-color: var(--bg-grey);
}

.cp-section-white {
    background-color: var(--bg-white);
}

.cp-section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.cp-section-subtitle {
    font-size: 26px;
    color: var(--main-blue);
    font-weight: 700;
    margin-bottom: 35px;
}

.cp-section-desc {
    font-size: 19px;
    color: #444;
    margin-bottom: 50px;
}

/* List Items */
.cp-item {
    margin-bottom: 70px;
}

.cp-item:last-child {
    margin-bottom: 0;
}

.cp-item-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--main-blue);
    margin-bottom: 25px;
}

.cp-item-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.cp-item-list li {
    position: relative;
    padding-left: 15px;
    font-size: 19px;
    margin-bottom: 12px;
    color: #333;
}

.cp-item-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-black);
}

.cp-item-desc {
    font-size: 18px;
    color: #333;
    margin: 20px 0;
}

/* Caution Box */
.cp-caution-box {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 30px 40px;
    font-size: 18px;
    color: #444;
    border: 1px solid #eee;
}

.cp-caution-box.grey {
    background-color: var(--bg-grey);
}

.cp-caution-box .caution-tag {
    color: var(--main-blue);
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

/* Button */
.cp-btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.cp-btn-wrap.right {
    justify-content: space-between;
}

.cp-btn-wrap.center {
    justify-content: center;
}

.cp-btn-text {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.cp-btn-query {
    background-color: var(--main-blue);
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,160,226,0.3);
}

.cp-btn-query:hover {
    background-color: #008cc9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,160,226,0.4);
}

.cp-btn-query::after {
    content: "→";
    margin-left: 12px;
    font-weight: 400;
}

/* Table */
.cp-table-wrap {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 10px;
}

.cp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.cp-table th, .cp-table td {
    padding: 20px 15px;
    border: 1px solid #e1e8ed;
    text-align: center;
    vertical-align: middle;
}

.cp-table thead th {
    background-color: #eef3f8;
    color: #333;
    font-weight: 800;
    font-size: 17px;
}

.cp-table tbody th {
    background-color: #f9fbfc;
    font-weight: 700;
    color: #333;
}

.cp-table td {
    font-size: 17px;
    background-color: #fff;
}

/* Mobile Overrides */
@media (max-width: 768px) {
    .cp-inner {
        padding: 0 25px;
    }
    .cp-header-wrap {
        padding: 30px 0;
    }
    .cp-header-box {
        padding: 40px 30px;
        text-align: center;
    }
    .cp-logo {
        height: 28px;
        margin: 0 auto 20px;
        display: block;
    }
    .cp-header-box h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }
    .cp-header-box p {
        font-size: 16px;
    }
    .cp-section {
        padding: 60px 0;
        text-align: center;
        margin-bottom: 0;
    }
    .cp-section-title {
        font-size: 28px;
    }
    .cp-section-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .cp-section-desc {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .cp-item {
        margin-bottom: 50px;
        text-align: left;
    }
    .cp-item-title {
        font-size: 22px;
        text-align: center;
    }
    .cp-item-list li {
        font-size: 16px;
    }
    .cp-item-desc {
        font-size: 16px;
        text-align: center;
    }
    .cp-caution-box {
        padding: 25px;
        font-size: 15px;
    }
    .cp-btn-wrap {
        flex-direction: column;
        text-align: center;
    }
    .cp-btn-text {
        margin-bottom: 25px;
        font-size: 20px;
    }
    .cp-btn-query {
        padding: 15px 35px;
        font-size: 18px;
    }

    /* Mobile Table (Card Type) */
    .cp-table-wrap {
        overflow-x: visible;
    }
    .cp-table {
        min-width: 100%;
        display: block;
    }
    .cp-table thead {
        display: none;
    }
    .cp-table tbody {
        display: block;
    }
    .cp-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e1e8ed;
        border-radius: 15px;
        overflow: hidden;
    }
    .cp-table th, .cp-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        text-align: right;
        font-size: 15px;
    }
    .cp-table th {
        background-color: var(--main-blue);
        color: #fff;
        justify-content: center;
        font-size: 18px;
    }
    .cp-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #666;
        text-align: left;
    }
}
