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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #007AFF;
}

header h1 {
    font-size: 2.5em;
    color: #007AFF;
    margin-bottom: 10px;
}

header p {
    color: #666;
    font-size: 1.1em;
}

nav {
    margin-bottom: 20px;
}

nav a {
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.hero p {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056CC;
}

.legal-content, .support-content {
    max-width: 100%;
}

.legal-content h1, .support-content h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 3px solid #007AFF;
    padding-bottom: 10px;
}

.legal-content h2, .support-content h2 {
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    color: #007AFF;
}

.legal-content h3, .support-content h3 {
    font-size: 1.2em;
    margin: 20px 0 10px 0;
    color: #333;
}

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

.legal-content ul, .support-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li, .support-content li {
    margin-bottom: 8px;
}

.legal-content a, .support-content a {
    color: #007AFF;
    text-decoration: none;
}

.legal-content a:hover, .support-content a:hover {
    text-decoration: underline;
}

.legal-content section, .support-content section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007AFF;
}

.contact-info {
    background: #e3f2fd !important;
    border-left-color: #2196F3 !important;
}

.faq-item, .trouble-item {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 6px;
    border-left: 3px solid #007AFF;
}

.faq-item h3, .trouble-item h3 {
    color: #007AFF;
    margin-bottom: 8px;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
}

footer a {
    color: #007AFF;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.6em;
    }
    
    .links {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}
