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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
    overflow-x: hidden;
}

header {
    background: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1e293b;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    color: #1e293b;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #f8fafc;
}

.btn-signup {
    background: #7c3aed;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.btn-signup:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.legal-section li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}



@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .btn-login,
    .btn-signup {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 494px) {
    .btn-login,
    .btn-signup {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}
