:root {
    /* Colors - Minimal palette */
    --primary: #36C5F1;
    --text-main: #111111;
    --text-sub: #555555;
    --text-muted: #999999;
    --bg-color: #FAFAFA;
    --surface: #FFFFFF;
    --border: #E8E8E8;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.2s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   Policy Pages - Clean & Minimal
   ======================================== */

.policy-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 48px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--text-main);
}

.back-link svg {
    margin-right: 6px;
}

/* Header */
.policy-header {
    margin-bottom: 56px;
}

.policy-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 8px;
}

.policy-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Content */
.policy-content section {
    margin-bottom: 48px;
}

.policy-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.policy-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 0 8px;
}

.policy-content p {
    color: var(--text-sub);
    margin-bottom: 12px;
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    color: var(--text-sub);
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.policy-content a {
    color: var(--text-main);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--text-sub);
}

/* Highlight Box - Simple gray background */
.highlight-box {
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 16px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Info Card - Minimal */
.info-card {
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 16px 0;
}

/* Tables */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9375rem;
}

.policy-table th,
.policy-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.policy-table th {
    background: var(--bg-color);
    font-weight: 600;
    color: var(--text-main);
}

.policy-table td {
    color: var(--text-sub);
}

/* Contact Box - Simple */
.contact-box {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 56px;
}

.contact-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.contact-box p {
    margin-bottom: 8px;
}

.contact-box a {
    color: var(--text-main);
    text-decoration: underline;
}

.contact-box a:hover {
    color: var(--text-sub);
}

/* Policy Card - For numbered items */
.policy-card {
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 12px;
}

.policy-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.policy-card p {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

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

/* Sub-list inside ordered list */
.policy-content .sub-list {
    background: var(--bg-color);
    padding: 12px 12px 12px 28px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    list-style-type: disc;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.rights-grid .right-item {
    background: var(--bg-color);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.rights-grid .right-item strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.rights-grid .right-item span {
    font-size: 0.875rem;
    color: var(--text-sub);
}

/* Contact Info Grid */
.contact-info {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-item-value {
    font-weight: 500;
    color: var(--text-main);
}

.contact-item-value a {
    color: var(--text-main);
    text-decoration: underline;
}

.contact-item-value a:hover {
    color: var(--text-sub);
}

/* Footer note */
.policy-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Utility */
.text-primary { color: var(--primary); }
.font-bold { font-weight: 600; }

/* Responsive */
@media (max-width: 640px) {
    .policy-page {
        padding: 48px 20px 80px;
    }

    .policy-title {
        font-size: 1.625rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }
}
