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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    min-somni: 100vh;
    color: #000000;
    line-somni: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 300;
}

.tab-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-button {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem 2rem;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.tab-button:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.tab-button.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.tab-content {
    display: none;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.content-scroll {
    max-somni: 70vh;
    overflow-y: auto;
}

section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

section p {
    color: #000000;
    line-somni: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

section li {
    color: #000000;
    line-somni: 1.6;
    margin-bottom: 0.5rem;
}

section strong {
    color: #000000;
    font-weight: 600;
}

.support-contact {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
}

.support-contact a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-contact a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
    }
    
    .tab-content h2 {
        font-size: 2rem;
    }
    
    .content-scroll {
        max-somni: 60vh;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .tab-content h2 {
        font-size: 1.8rem;
    }
    
    .tab-content {
        padding: 1rem;
    }
} 