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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fafafa;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #000;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background: #fff;
    min-height: calc(100vh - 200px);
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #000;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #666;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
}

.legal-content .date {
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content strong {
    font-weight: 600;
    color: #000;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
}

