/* Legal Pages Styles */

.legal-page {
    background: #020202;
    color: #e5e7eb;
    min-height: 100vh;
}

/* Legal Content Section */
.legal-content {
    padding: 120px 0 4rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    min-height: calc(100vh - 80px);
}

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

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-style: italic;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

/* Legal Body */
.legal-body {
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 2rem 0 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

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

.legal-section a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

/* Cookie Table Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: rgba(59, 130, 246, 0.1);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table td {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 3rem;
    }
    
    .legal-container {
        padding: 0 1rem;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .cookie-table th,
    .cookie-table td {
        min-width: 120px;
    }
}

/* Print Styles */
@media print {
    .legal-page {
        background: #ffffff;
        color: #000000;
    }
    
    .legal-content {
        background: #ffffff;
        padding: 2rem 0;
    }
    
    .legal-section {
        background: #ffffff;
        border: 1px solid #cccccc;
        color: #000000;
        page-break-inside: avoid;
    }
    
    .legal-section h2,
    .legal-section h3 {
        color: #000000;
    }
    
    .legal-section p,
    .legal-section li {
        color: #333333;
    }
    
    .cookie-table {
        background: #ffffff;
        border: 1px solid #cccccc;
    }
    
    .cookie-table th,
    .cookie-table td {
        color: #000000;
        border-color: #cccccc;
    }
}



