:root {
    --primary-color: #0f172a;
    --text-main: #334155;
    --text-heading: #0f172a;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --radius-lg: 12px;
}

body {
    background-color: var(--bg-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
}

.legal-container {
    max-width: 800px;
    margin: 40px auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Header */
.legal-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -0.02em;
}

.legal-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

/* Content */
.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.legal-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin: 20px 0 10px;
}

.legal-text {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 12px;
    text-align: justify;
}

.legal-list {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Scroll Box for Nested Policy */
.privacy-scroll-box {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 8px;
    height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    font-size: 14px;
    margin-top: 16px;
}

.privacy-scroll-box h3,
.privacy-scroll-box h4 {
    margin-top: 16px;
    color: var(--text-heading);
}

/* Form Agreement */
.agreement-form {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
}

.agreement-text {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 16px;
    text-align: center;
}

.chk-group {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
}

.continue-btn {
    font-weight: 600;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 600px) {
    .legal-container {
        padding: 24px 16px;
        margin: 20px 10px;
    }

    .legal-title {
        font-size: 24px;
    }
}