* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background: #f8fafc;
}

a {
    color: #667eea;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
}

.site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.site-logo:hover {
    text-decoration: none;
    opacity: 0.95;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.site-nav a:not(.btn-primary) {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.site-nav a:not(.btn-primary):hover {
    color: white;
}

.site-nav .btn-primary {
    background: white;
    color: #5b6fd8;
}

.site-nav .btn-primary:hover {
    color: #4c5fc7;
    text-decoration: none;
}

.btn-primary {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    background: white;
    color: #5b6fd8;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.25);
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.hero {
    text-align: center;
    padding: 3rem 0 2.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 1rem;
    color: #111827;
}

.hero p {
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #374151;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.legal-page .updated {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
    color: #374151;
}

.legal-page p,
.legal-page ul {
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-page ul {
    padding-left: 1.5rem;
}

.site-footer {
    border-top: 1px solid #e5e7eb;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.site-footer nav {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
