/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;
    min-height: 100vh;
}

/* Header Styles */
header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 40px;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

header h1 {
    font-size: 2.5em;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
}

header h2 {
    font-size: 2em;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.subtitle {
    color: #ffffff;
    font-size: 1.1em;
    margin-top: 10px;
    opacity: 0.9;
}

.back-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: underline;
    margin-bottom: 20px;
    font-size: 1em;
}

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

/* Landing Page Styles */
.legal-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.legal-card {
    display: block;
    padding: 30px;
    background-color: #000000;
    border: 1px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
}

.legal-card:hover {
    opacity: 0.9;
}

.legal-card h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 400;
}

.legal-card p {
    font-size: 1em;
    opacity: 0.95;
    line-height: 1.6;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.legal-content .intro-text {
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #ffffff;
}

.legal-content h2 {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.3em;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.legal-content p {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 0.95em;
}

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

.legal-content li {
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.7;
}

.legal-content a {
    color: #ffffff;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.8;
}

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

/* Footer Styles */
footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #ffffff;
    margin-top: 60px;
    color: #ffffff;
}

.last-updated {
    font-size: 0.9em;
    margin-top: 10px;
}

/* Support page */
.support-email-block {
    margin: 24px 0 12px;
}

.support-email-link {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
}

.support-email-link:hover {
    opacity: 0.85;
}

.support-email-note {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 48px;
        height: 48px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    header h2 {
        font-size: 1.5em;
    }
    
    .legal-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-card {
        padding: 25px;
    }
    
    .legal-card h2 {
        font-size: 1.5em;
    }
    
    .legal-content h2 {
        font-size: 1.5em;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-header {
        gap: 10px;
    }
    
    header h1 {
        font-size: 1.5em;
    }
    
    header h2 {
        font-size: 1.3em;
    }
    
    .subtitle {
        font-size: 0.9em;
    }
    
    .legal-content {
        padding: 0 10px;
    }
    
    .legal-content ul {
        margin-left: 20px;
    }
}
