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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #000000;
    line-height: 1.1;
}

.description {
    font-size: 21px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    max-width: 600px;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 56px;
        letter-spacing: -1.5px;
    }
    
    .description {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 42px;
        letter-spacing: -1px;
    }
    
    .description {
        font-size: 16px;
    }
}

.copyright {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    letter-spacing: -0.2px;
}

@media (max-width: 480px) {
    .copyright {
        font-size: 12px;
        bottom: 15px;
        left: 15px;
    }
}

.footer-links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 400;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.2px;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.6;
}

@media (max-width: 480px) {
    .footer-links {
        font-size: 12px;
        gap: 15px;
        bottom: 15px;
        right: 15px;
    }
}

/* Legal pages styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: left;
}

.legal-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
    color: #000000;
}

.legal-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000000;
    letter-spacing: -0.5px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 12px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 8px;
}

.legal-section strong {
    font-weight: 500;
}

.back-link {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.back-link a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.back-link a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 20px;
    }
    
    .legal-title {
        font-size: 36px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 30px 15px;
    }
    
    .legal-title {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
}

