/* Exampil Legal Design System */
:root {
    /* Brand Tokens from Colors.ts */
    --primary: #8C3562;       /* BLUE_COLOR */
    --primary-dark: #422042;  /* DARK_COLOR */
    --text-main: #2F2651;     /* TEXT_COLOR */
    --text-sub: #6F6B88;      /* SUB_TEXT_COLOR */
    --bg-light: #EEF3F5;      /* BG_COLOR */
    --border: #EBE9EF;        /* BORDER_LINE_COLOR */
    --accent: #918DF3;        /* EMAIL_TEXT_COLOR */
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    margin: 0;
}

/* Header */
.policy-header {
    background-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.policy-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 800;
}

/* Layout */
.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 60px 20px;
}

/* Sidebar */
.policy-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.policy-sidebar h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 20px;
}

.policy-sidebar ul {
    list-style: none;
    padding: 0;
}

.policy-sidebar li {
    margin-bottom: 12px;
}

.policy-sidebar a {
    text-decoration: none;
    color: var(--text-sub);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.policy-sidebar a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Content */
.policy-content section {
    margin-bottom: 50px;
}

.last-updated {
    color: var(--text-sub);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 30px;
}

h2 {
    color: var(--primary);
    font-size: 1.8rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
    margin-top: 0;
}

h3 {
    color: var(--text-main);
    margin-top: 25px;
}

/* Components */
.callout-card {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.data-table td {
    padding: 15px;
    border: 1px solid var(--border);
    vertical-align: top;
    font-size: 0.95rem;
}

.data-table .label {
    background-color: #fcfcfd;
    font-weight: 700;
    color: var(--primary);
    width: 30%;
}

@media (max-width: 992px) {
    .policy-container {
        grid-template-columns: 1fr;
    }
    .policy-sidebar {
        position: relative;
        border-bottom: 1px solid var(--border);
        padding-bottom: 30px;
    }
}