* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    color: #1d1d1f;
    background: #fbfbfd;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1d1d1f;
    text-decoration: none;
}

.back-link {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.6;
}

/* Content */
.container {
    max-width: 800px;
    margin: 120px auto 80px;
    padding: 0 40px;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.last-updated {
    color: #6e6e73;
    font-size: 16px;
    margin-bottom: 60px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

ul {
    margin: 20px 0 20px 30px;
}

li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1d1d1f;
}

strong {
    font-weight: 600;
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    opacity: 0.6;
}

.info-box {
    background: #f5f5f7;
    border-left: 4px solid #000;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box p {
    margin-bottom: 0;
}

.email-error {
    color: var(--political-primary, #FF2D55);
    font-style: italic;
    font-size: 0.95em;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
}

/* Footer */
footer {
    background: #1d1d1f;
    color: #f5f5f7;
    padding: 40px;
    text-align: center;
    margin-top: 80px;
}

footer p {
    font-size: 14px;
    opacity: 0.7;
    color: #f5f5f7;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f5f5f7;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin-top: 100px;
        padding: 0 20px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    p, li {
        font-size: 16px;
    }

    .nav-content {
        padding: 15px 20px;
    }

    .logo {
        font-size: 24px;
    }
}

html {
    scroll-behavior: smooth;
}