:root {
    --primary-color: #007AFF;
    --bg-light: #ffffff;
    --bg-dark: #000000;
    --card-bg-light: #f5f5f7;
    --card-bg-dark: #1c1c1e;
    --text-light: #1d1d1f;
    --text-dark: #f5f5f7;
    --secondary-text-light: #86868b;
    --secondary-text-dark: #8e8e93;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    line-height: 1.5;
    background-color: var(--bg-light);
    color: var(--text-light);
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--bg-dark);
        color: var(--text-dark);
    }
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

@media (prefers-color-scheme: dark) {
    nav {
        background: rgba(0, 0, 0, 0.7);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

nav .container {
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo-title {
    font-size: 13px;
    font-weight: 700;
}

.logo-subtitle {
    font-size: 9px;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 1px;
}


.nav-links {
    display: flex;
    align-items: center;
}

.lang-switcher {
    margin-left: 20px;
    position: relative;
    cursor: pointer;
    font-size: 12px;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (prefers-color-scheme: dark) {
    .lang-dropdown {
        background: rgba(28, 28, 30, 0.9);
        border-color: rgba(255,255,255,0.1);
    }
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 6px 16px;
    text-decoration: none;
    color: inherit;
    margin-left: 0;
}

.lang-dropdown a:hover {
    background: var(--primary-color);
    color: white;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    color: var(--secondary-text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

@media (prefers-color-scheme: dark) {
    .hero p {
        color: var(--secondary-text-dark);
    }
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Content Sections */
.section {
    padding: 80px 0;
}

.legal-content {
    max-width: 700px;
    margin: 100px auto;
    padding: 0 22px;
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--secondary-text-light);
}

@media (prefers-color-scheme: dark) {
    .legal-content p {
        color: var(--secondary-text-dark);
    }
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 12px;
    color: var(--secondary-text-light);
}

@media (prefers-color-scheme: dark) {
    footer {
        border-top: 1px solid rgba(255,255,255,0.1);
        color: var(--secondary-text-dark);
    }
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    margin-right: 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.grid-container {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px;
}

.footer-copyright {
    margin-top: 12px; 
    opacity: 0.6;
    line-height: 1.8;
}

.footer-copyright.subtle {
    font-size: 10px;
    opacity: 0.4;
}

.gov-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 18px; }
}

/* Card & FAQ styles with theme support */
.step-card, .faq-item {
    background-color: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: background-color 0.2s, border-color 0.2s;
}

.step-card h3, .faq-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 16px;
}

.step-card p, .faq-item p {
    margin-bottom: 0;
    color: var(--secondary-text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
    .step-card, .faq-item {
        background-color: #1c1c1e;
        border-color: rgba(255, 255, 255, 0.05);
    }
    .step-card h3, .faq-item h3 {
        color: var(--text-dark);
    }
    .step-card p, .faq-item p {
        color: var(--secondary-text-dark);
    }
}

/* Quick Link Banner Card */
.banner-card {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(0, 122, 255, 0.02) 100%);
    border: 1px solid rgba(0, 122, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.banner-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 17px;
    color: var(--text-light);
}

.banner-card p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--secondary-text-light);
    line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
    .banner-card {
        background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0.03) 100%);
        border-color: rgba(0, 122, 255, 0.2);
    }
    .banner-card h3 {
        color: var(--text-dark);
    }
    .banner-card p {
        color: var(--secondary-text-dark);
    }
}

@media (max-width: 600px) {
    .banner-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .banner-card a.cta-button {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}


