:root {
    --primary: #0f172a;
    --accent: #2563eb;
    --text: #334155;
    --bg: #f8fafc;
    --card-bg: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-decoration: none;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-main {
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.privacy-main {
    padding: 2rem 1rem 4rem;
    animation: fadeIn 0.8s ease-out;
}

.home-main h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.privacy-main h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

p.subtitle {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: var(--primary);
}

em {
    color: #64748b;
    font-style: italic;
}

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

a:hover {
    text-decoration: underline;
}

.content-container {
    background-color: var(--card-bg);
    max-width: 800px;
    width: 100%;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    line-height: 1.7;
}

.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3), 0 2px 4px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4), 0 4px 6px -2px rgba(37, 99, 235, 0.2);
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.875rem;
    color: #64748b;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .content-container {
        padding: 2rem;
    }
    .privacy-main h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 600px) {
    .home-main h1 { font-size: 2.5rem; }
    .subtitle { font-size: 1.125rem; }
}

@media (max-width: 480px) {
    .content-container {
        padding: 1.5rem;
        border-radius: 12px;
    }
    .privacy-main h1 { font-size: 1.75rem; }
}

/* Additional Marketing & Layout Styles */
.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-section {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.features-section {
    text-align: left;
    margin-top: 2rem;
}

.feature {
    margin-bottom: 2rem;
}

.feature:last-child {
    margin-bottom: 0;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text);
    margin: 0 0.5rem;
    font-weight: 500;
}

.disclaimer-text {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0 auto 1rem auto;
    color: #94a3b8;
    line-height: 1.5;
}

.nav-links a {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}
