body {
    background-color: #f8fafc; /* bg-slate-50 */
    font-family: 'Inter', sans-serif;
    color: #334155; /* text-slate-700 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem; /* py-16 px-6 */
}

.legal-header h1 {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 900; /* font-black */
    color: #1e293b; /* text-slate-800 */
    margin-bottom: 0.5rem;
}

.legal-header .last-updated {
    color: #64748b; /* text-slate-500 */
    font-size: 0.875rem; /* text-sm */
    margin-bottom: 2.5rem;
}

.legal-content {
    background-color: white;
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 2.5rem; /* p-10 */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08); /* shadow-card */
    border: 1px solid #f1f5f9; /* border-slate-100 */
}

.legal-content h2 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 800; /* font-extrabold */
    color: #1e293b; /* text-slate-800 */
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0; /* border-slate-200 */
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 1rem; /* text-base */
    line-height: 1.75; /* leading-7 */
    color: #475569; /* text-slate-600 */
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-position: inside;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    font-weight: 700;
    color: #334155; /* text-slate-700 */
}

.back-link-container {
    text-align: center;
    margin-top: 2.5rem; /* mt-10 */
}

.back-link {
    display: inline-block;
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    color: #1c64f2; /* text-primary */
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem; /* rounded-xl */
    background-color: #eff6ff; /* primary-light */
    transition: all 0.2s ease-in-out;
}

.back-link:hover {
    background-color: #dbeafe; /* blue-200 */
    box-shadow: 0 0 15px rgba(28, 100, 242, 0.2);
}
