/* Legal Pages Styles */

.legal-page {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
}

.legal-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 0;
}

.legal-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-section li::before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Contact Info Styling */
.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info a {
    color: #667eea;
    font-weight: 600;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.cookie-settings {
    text-align: center;
    margin: 30px 0;
}

.cookie-settings .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Compliance Page Specific Styles */
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge i {
    font-size: 1.1rem;
}

.state-compliance {
    margin: 30px 0;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.state-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.state-item strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.state-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.kyc-process {
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.compliance-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.contact-card h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 8px;
    color: #555;
}

.contact-card a {
    color: #667eea;
    font-weight: 600;
}

.regulatory-updates {
    margin: 30px 0;
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
}

.update-date {
    background: #667eea;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.update-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1rem;
}

.update-content p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .compliance-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .state-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .compliance-contacts {
        grid-template-columns: 1fr;
    }
    
    .update-item {
        flex-direction: column;
        text-align: center;
    }
    
    .update-date {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
}

