body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none; /* In case we wrap it in an anchor */
}

.logo {
    height: 48px;
    width: auto;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #2c3e50;
    line-height: 1;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

nav a:hover {
    color: #007bff;
}

.hero {
    background: #2c3e50;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: background 0.2s;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: white;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #eee;
}

.features {
    display: flex;
    justify-content: space-between;
    padding: 4rem 20px;
    gap: 20px;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex: 1;
    text-align: center;
}

.feature h3 {
    color: #007bff;
    margin-top: 0;
}

/* Document pages (Privacy/Terms) */
.document-content {
    background: white;
    padding: 3rem;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.document-content h1 {
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.document-content h2 {
    margin-top: 2rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.document-content h3 {
    margin-top: 1.5rem;
    color: #444;
    font-size: 1.1rem;
}

.document-content ul {
    padding-left: 20px;
}

.document-content li {
    margin-bottom: 0.5rem;
}

footer {
    background: #333;
    color: #aaa;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
}
