/* ========================================
   LEGAL PAGES - Privacy Policy & Terms of Service
   ======================================== */

/* ========================================
   HEADER
   ======================================== */
.header {
    padding: 24px 0;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    color: var(--deep-blue);
}

.header .logo-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.header .logo-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.back-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.8;
}

/* ========================================
   CONTENT
   ======================================== */
.content {
    padding: 64px 0 96px;
}

.content .container {
    max-width: 800px;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--soft-gray);
    margin-bottom: 48px;
}

.content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--deep-blue);
}

.content p {
    margin-bottom: 16px;
    color: var(--soft-gray);
}

.content ul {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--soft-gray);
}

.content li {
    margin-bottom: 8px;
}

.content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER (Legal page variant)
   ======================================== */
.legal-footer {
    padding: 32px 0;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
    text-align: center;
    background: var(--warm-white);
}

.legal-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.legal-footer .footer-links a {
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.legal-footer .footer-links a:hover {
    color: var(--deep-blue);
}

.legal-footer .footer-copyright {
    color: var(--light-gray);
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 640px) {
    .content h1 {
        font-size: 2rem;
    }
    .content h2 {
        font-size: 1.25rem;
    }
}
