*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f7f7f9;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Navigation */

.site-header {
    background-color: #111827;
    color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-brand .brand-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.site-brand .brand-link:hover {
    text-decoration: underline;
}

.site-nav .nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.site-nav .nav-item {
    margin: 0;
}

.site-nav .nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.site-nav .nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Main Content */

.site-main {
    flex: 1;
    padding: 2rem 1rem 3rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

/* Common Policy Styles */

.policy-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.policy-title {
    font-size: 1.75rem;
    margin: 0 0 0.25rem;
    color: #111827;
}

.policy-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7280;
}

.policy-updated {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.policy-section {
    margin-top: 1.75rem;
}

.policy-section-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #111827;
    font-weight: 600;
}

.policy-paragraph {
    margin: 0.4rem 0;
    color: #374151;
    font-size: 0.97rem;
}

.policy-list {
    margin: 0.5rem 0 0.75rem 1.25rem;
    padding: 0;
    color: #374151;
    font-size: 0.97rem;
}

.policy-list li {
    margin-bottom: 0.25rem;
}

.policy-highlight {
    font-weight: 600;
    color: #111827;
}

.policy-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Footer */

.site-footer {
    background-color: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
}

.footer-text {
    margin: 0;
}

/* Responsive */

@media (max-width: 640px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .policy-container {
        padding: 1.5rem 1.25rem;
    }

    .policy-title {
        font-size: 1.5rem;
    }
}


