.legal-content {
    min-height: calc(100vh - 80px - 300px);
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.95) 0%, rgba(243, 244, 246, 0.95) 100%);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.03);
}

.legal-document h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.legal-document .last-updated {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f3f4f6;
}

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

.legal-document h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
    padding-left: 16px;
}

.legal-document h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 2px;
}

.legal-document h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-document p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-document ul li {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 12px;
    position: relative;
    padding-left: 8px;
}

.legal-document ul li::marker {
    color: #3b82f6;
}

.legal-document address {
    font-style: normal;
    color: #4b5563;
    line-height: 1.75;
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    margin-top: 16px;
}

.legal-document a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-document a:hover {
    color: #1e40af;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-wrapper {
        padding: 32px 24px;
        border-radius: 0;
    }
    
    .legal-document h1 {
        font-size: 2rem;
    }
    
    .legal-document h2 {
        font-size: 1.5rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
}