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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #7B68EE 0%, #9370DB 50%, #DDA0DD 100%);
    color: white;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    font-weight: 400;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
}

.about {
    margin-top: 40px;
    font-size: 1rem;
    opacity: 0.85;
}

.contact {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact a {
    color: white;
    text-decoration: underline;
}

/* Legal pages */
.legal {
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.legal .updated {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

.legal h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.legal a {
    color: white;
}

.back-link {
    margin-top: 40px;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.95rem;
}

.back-link:hover {
    opacity: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    
    .legal {
        padding: 40px 20px;
    }
    
    .legal h1 {
        font-size: 1.8rem;
    }
}
