/* Legal Pages Specific Styles (Privacy Policy & Terms of Service) */

/* Legal Header */
.legal-header {
    position: relative;
    padding: 150px 0 80px;
    background: #050a14;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-header .container {
    position: relative;
    z-index: 2;
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Content Section */
.legal-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    color: var(--text-color);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header {
        padding: 120px 0 50px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}