/* =========================
   POLICY PAGE
========================= */

body {
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #222;
    font-family:
            "Pretendard",
            "Noto Sans KR",
            sans-serif;
    line-height: 1.8;
}

/* =========================
   CONTAINER
========================= */

.policy-container {
    max-width: 920px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-sizing: border-box;
}

/* =========================
   HEADER
========================= */

.policy-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.policy-header h1 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.updated-date {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* =========================
   HEADER TOP
========================= */

.policy-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.back-btn {
    padding: 10px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
}

.back-btn:hover {
    background: #f5f5f5;
}

.back-btn:active {
    transform: scale(0.98);
}

/* =========================
   SECTION
========================= */

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.policy-section p {
    margin-bottom: 14px;
}

.policy-section ul {
    padding-left: 24px;
    margin: 16px 0;
}

.policy-section li {
    margin-bottom: 8px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .policy-container {
        margin: 20px;
        padding: 24px;
    }

    .policy-header h1 {
        font-size: 26px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-top {
        justify-content: center;
    }

    .back-btn {
        width: 100%;
    }
}