/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header / Hero */
header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

header h1 a {
    color: #000;
    text-decoration: none;
}

header h1 a:hover {
    text-decoration: underline;
}

.tagline {
    font-size: 1.125rem;
    color: #666;
    font-weight: 400;
}

/* Main Content */
main {
    margin-bottom: 3rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

section p {
    margin-bottom: 1rem;
    color: #333;
}

/* Products */
.product {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.product:last-child {
    border-bottom: none;
}

.product h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.coming-soon {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    font-style: italic;
}

.product p {
    margin-bottom: 0.5rem;
}

/* Links */
a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Footer */
footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 0.875rem;
    color: #666;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #666;
}

/* Privacy Policy Specific */
.last-updated {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    body {
        padding: 1.5rem 1rem;
    }

    header h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.25rem;
    }

    .product h3 {
        font-size: 1.125rem;
    }
}

